标签: javascript vue.js vue-component
我正在通过CDN将Vue导入到我的项目中。我在.js文件中有一些组件,例如sample.js:
var sample = { template: ` <div> <p>sample component</p> </div> ` };
然后将其导入index.html中,并在我的应用中使用它。现在,我想将样式仅应用于组件,就像通过NPM或CLI使用Vue一样。 如果不可能的话,最好的选择是什么?