0.3.15 • Published 7 years ago

videl v0.3.15

Weekly downloads
30
License
MIT
Repository
github
Last release
7 years ago

Videl

Videl is a component framework for Vue2. Based on Bulma.

Install

npm install videl --save-dev

Use

Make sure to include the dist/videl.min.css file as the styles have been extracted into a single CSS file.

import 'Vue' from 'vue'
import 'Videl' from 'videl'

Vue.use(Videl)

Install via CDN

<link rel="stylesheet" href="https://unpkg.com/videl/dist/videl.min.css">

<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/videl/dist/videl.min.js"></script>

Example

<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="https://unpkg.com/videl/dist/videl.min.css">

        <title>Videl example</title>
    </head>

    <body>
        <div id="app">

            <!-- Container -->
            <vd-container>
            
                <!-- Box -->
                <vd-box>Hello World!</vd-box>
                
                <!-- Button -->
                <vd-button>This is awesome!</vd-button>
                
            </vd-container>
            
        </div>

        <!-- Scripts -->
        <script src="https://unpkg.com/vue/dist/vue.js"></script>
        <script src="https://unpkg.com/videl/dist/videl.min.js"></script>
        
        <script>
            new Vue({
                el: '#app'
            })
        </script>
    </body>
</html>
0.3.15

7 years ago

0.3.14

7 years ago

0.3.13

7 years ago

0.3.12

7 years ago

0.3.11

7 years ago

0.3.10

7 years ago

0.3.9

7 years ago

0.3.8

7 years ago

0.3.7

7 years ago

0.3.6

7 years ago

0.3.5

7 years ago

0.3.4

7 years ago

0.3.3

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago