1.0.3 • Published 4 years ago

@dominik.betka/vue-atomic v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

vue-atomic (pre-alpha version)

The most flexible Vue UI Library

Installation

npm i -D @dominik.betka/vue-atomic

Using

Add all components

import VueAtomic from 'vue-atomic'
import 'vue-atomic/dist/style.css'

Vue.use(VueAtomic)

Add single component

with default name

import {AButton} from 'vue-atomic'
import 'vue-atomic/dist/atoms/button.sass' // file not exists yet

Vue.component(AButton.name, AButton) // component name is a-button

with own name

import {AButton} from 'vue-atomic'
import 'vue-atomic/dist/atoms/button.sass' // file not exists yet

Vue.component('new-button', AButton) // component name is new-button
1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago