prpllnt
v0.7.30
Published
well-crafted Vue.js components
Downloads
26
Maintainers
Readme
propellant-components
getting started
install
npm install prpllnt
use everything
import propellant from 'prpllnt'
Vue.use(propellant)
import '~prpllnt/lib/main.css'
or just certain components
import { pToast } from 'prpllnt'
Vue.component(pToast.name, pToast)
works outside build systems too!
<link rel="stylesheet" type="text/css" href="https://unpkg.com/prpllnt/lib/main.css" />
...
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/prpllnt"></script>
goals
- consider the component first, rather than wrap an existing CSS library
- balance performance and API simplicity
- no
watch
in components unless warranted by the use-case
- no
- use a Vue event bus to streamline components while still providing native debugging
- performant transitions/animations
- high forkability