2.0.13 • Published 5 years ago

vue-atlas-fix v2.0.13

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

atlas

npm.io

Documentation and examples at https://vue-atlas.com

Installation and usage

$ 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.

📦 Importing components

As a whole

import Vue from 'vue'

import Va from 'vue-atlas'
import 'vue-atlas/dist/vue-atlas.css'

Vue.use(Va, 'en')

Individually

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)

Contributing

Please see CONTRIBUTING.md.

🎉 Contributors

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!