UNPKG

vue-bulma-components

Version:

Quickly Translate Bulma css in to vue components

14 lines (12 loc) 339 B
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue' import App from './App' import Plugin from './plugin/plugin' Vue.use(Plugin) /* eslint-disable no-new */ new Vue({ el: '#app', template: '<App/>', components: { App } })