Documentation and examples at https://vue-atlas.com
$ yarn add vue-atlas
# or
$ npm install vue-atlas
You can either import all of the components into your project or, to decrease bundle size, import only the components you require.
import Vue from 'vue'
import Va from 'vue-atlas'
import 'vue-atlas/dist/vue-atlas.css'
Vue.use(Va, 'en')
For now, component stylesheets have not been modularized, so you will need to import the entire CSS bundle.
import Vue from 'vue'
import { VaButton } from 'vue-atlas/src/Button'
import { VaSelect } from 'vue-atlas/src/Select'
import { VaDropdown } from 'vue-atlas/src/Dropdown'
import 'vue-atlas/dist/vue-atlas.css'
Vue.use(VaButton)
Vue.use(VaSelect)
Vue.use(VaDropdown)
If you would like to contribute, please read CONTRIBUTING.md.
Many thanks to those of you who have taken an interest in this project and have decided to make contributions. Significant contribution will get you added to the list!