Skip to content
forked from nvms/vue-atlas

๐ŸŒ A Vue.js 2 UI component library.

License

Notifications You must be signed in to change notification settings

max-frai/vue-atlas

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

atlas

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)

๐ŸŽ‰ Contributors

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!

About

๐ŸŒ A Vue.js 2 UI component library.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Vue 65.6%
  • CSS 22.0%
  • JavaScript 12.2%
  • Other 0.2%