0.5.3 • Published 5 years ago
atomio-vue v0.5.3
Support
If you find this project interesting and wish to see it grow, you can support me via donations on following platforms:
Install
You can install the library via npm
npm install --save atomio-vue
Basic usage
You can install the whole library:
import Vue from "vue"
import Atomio from "atomio-vue"
import "atomio-vue/dist/atomio.min.css"
Vue.use(Atomio, {
theming: {
currentTheme: "primary"
}
})
Or install library context and register required components:
import Vue from "vue"
import { AtomioContext } from "atomio-vue"
import { AtomioButton } from "atomio-vue/dist/components"
Vue.use(AtomioContext, {
theming: {
currentTheme: "primary"
}
})
Vue.component(AtomioButton.name, AtomioButton)
Documentation
Documentation is available on Atomio website.
Explore
You can explore the library with Storybook.
npm run storybook
Changelog
You can see the project changelog here.
License
This project is released under the MIT License.
Copyright © 2020 Andrey "cognio" Chervyakov.