用gulp打包vue项目需要哪些包?
比如我写的如下代码
Vue.component('chart-option', {
template: `
<ul class="clearfix fl chart-option-list">
<li class="fl chart-option-item" v-for="(item, index) in checkedConfig">
<input class="hide" type="checkbox" :id="item.id" value="item.value" v-model="item.model" true-value="yes" false-value="no">
<label :for="item.id">
<span class="chart-option" :class="{on: item.model==='yes'}">
<i v-if="item.model==='yes'">√</i>
</span>
{{item.text}}
</label>
</li>
</ul>
`,
props: ['checked-config'],
data() {
return {};
},
methods: {},
mounted() {}
});
我希望可以通过gulp把这个js代码转译,特别是template中的html转译成render函数。求教该怎么做?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论