https://github.com/subotkevic/videl
Videl – Component Framework for Vue2.
https://github.com/subotkevic/videl
css flexbox framework frontend frontend-framework js vue2
Last synced: 9 months ago
JSON representation
Videl – Component Framework for Vue2.
- Host: GitHub
- URL: https://github.com/subotkevic/videl
- Owner: subotkevic
- License: mit
- Created: 2017-03-21T11:10:22.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-28T11:46:24.000Z (about 9 years ago)
- Last Synced: 2025-06-10T18:28:48.708Z (10 months ago)
- Topics: css, flexbox, framework, frontend, frontend-framework, js, vue2
- Language: Vue
- Homepage:
- Size: 283 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Videl
**Videl** is a component framework for Vue2. Based on [Bulma](http://bulma.io).
## Install
``` bash
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.
```javascript
import 'Vue' from 'vue'
import 'Videl' from 'videl'
Vue.use(Videl)
```
## Install via CDN
``` html
```
## Example
``` html
Videl example
Hello World!
This is awesome!
new Vue({
el: '#app'
})
```