Javascript代碼:如何使用Vue js中的名稱獲取視圖或組件對象?
var main = new Vue({
el: "#main",
data: {
currentView: "top",
},
});
var topComponent = Vue.component('top', Vue.extend({
template: "#top",
}));
現在,當我訪問main.currentView,我得到 「頂」。但是對於這個字符串'top',我如何獲得組件topComponent
?
的可能重複的[DOM元素對應vue.js成分](http://stackoverflow.com/questions/26915193/dom-element-to-corresponding-vue-js-component) – jcoffland