nast-helpers
Version:
Helpers for a fast codding
25 lines (21 loc) • 380 B
Markdown
```
npm i -S nast-helpers
```
```
import Vue from 'vue'
import App from './App'
import NastHelpers from 'nast-helpers'
Vue.use(NastHelpers.vue(), {})
new Vue({
render: (h) => h(App),
}).$mount('#app')
```
```
this.$var('loading', true)
this.$var('loading') // true
this.$var('loading', false)
```