最近再學(xué)習(xí)Vue.js,對創(chuàng)建模版的方式有以下問題:一般情況,我們使用如下方式創(chuàng)建模版:this.vm = new Vue({ el: this.wrapperElement, data: { label: this.label, btnStyle: this.btnStyle, icon: this.icon, img: this.img }, methods: { action: this.action }, template: `<ph-button :label="label" :btnStyle="btnStyle" :icon="icon" :action="action" :img="img"></ph-button>` })但是我想知道是否含有其他的方式,能達(dá)到與上面一樣的目的。如果可以,請大佬們列入其他的方式。且這些方式都能在class類中使用不甚感激!
使用Vue的方式
紅糖糍粑
2018-12-19 18:19:15