vue-blu icon indicating copy to clipboard operation
vue-blu copied to clipboard

Import components on demand

Open rafaberaldo opened this issue 7 years ago • 2 comments

Any way to import components on demand? Something like

import { Alert, Tooltip } from 'vue-blu'

Vue.component('alert', Alert)

That doesn't work.

rafaberaldo avatar Mar 18 '17 20:03 rafaberaldo

Try the following code.

import Alert from 'vue-blu/src/components/alert';
import 'vue-blu/dist/css/vue-blu.min.css'

Vue.component('alert', Alert);

chenz24 avatar Mar 20 '17 01:03 chenz24

Why do I have to import vue-blu/src/scss/blu AND vue-blu/dist/css/vue-blu.min.css? (if I don't, a lot of components are broken).

Shouldn't the blu.scss be enough since it already imports all elements (@import './elements/_all';)?

rafaberaldo avatar Mar 21 '17 13:03 rafaberaldo