kzima
12/3/2015 - 12:23 AM

Laravel and vuestrap-base-components - BOWER

Laravel and vuestrap-base-components - BOWER

<!DOCTYPE html>
<html id="app">
    <head>
        <title>Laravel</title>

        <link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
        <link href="assets/bower/vuestrap-base/dist/vuestrap-base.min.css" rel="stylesheet" type="text/css">

        <style>
            html, body {
                height: 100%;
            }

            body {
                margin: 0;
                padding: 0;
                width: 100%;
                display: table;
                font-weight: 100;
                font-family: 'Lato';
            }

            .container {
                text-align: center;
                display: table-cell;
                vertical-align: middle;
            }

            .content {
                text-align: center;
                display: inline-block;
            }

            .title {
                font-size: 96px;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="content">
                <jumbotron>
                  <div class="title">Laravel <badge>5</badge></div>
                </jumbotron>
            </div>
        </div>
        
        <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.10/vue.min.js"></script>
        <script src="assets/bower/vuestrap-base/dist/vuestrap-base.js"></script>
        <script>
          new Vue({
            el: '#app',
             components: {
               'badge': vuestrapBase.badge,
               'jumbotron': vuestrapBase.jumbotron
             }
          })
        </script>
        
    </body>
</html>
{
  "directory": "public/assets/bower"
}