vue-sfc-loader
v0.1.0
Published
vue sfc loader for browser
Downloads
116
Readme
vue-sfc-loader
vue sfc loader for browser
Features
- Able to handle component importing other components.
- Support CSS preprocessor SSSA.
Install
npm install vue-sfc-loader
Usage
import sfcLoader form 'vue-sfc-loader';
sfcLoader
.load('./exmaple.vue')
.then(componentOptions => {
new Vue({
render: h => h(componentOptions);
});
});