An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          


Downloads
Version
License

# 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'
})

```