0.7.29 • Published 7 years ago

@telenordigital/propellant v0.7.29

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

propellant - vue components

getting started

install

npm install @telenordigital/propellant

use everything

main.js

import propellant from '@telenordigital/propellant'
Vue.use(propellant)
// import the fully compiled+prefixed css (or do the sass import below)
import '~@telenordigital/propellant/lib/main.css'

main.scss

// import all sass - with functions and variables
@import '~@telenordigital/propellant';
or just certain components
import { pToast } from '@telenordigital/propellant'
Vue.component(pToast.name, pToast)
works outside build systems too!
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@telenordigital/propellant/lib/main.css" />
...
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/@telenordigital/propellant"></script>