Vue.component('webnav', { props: ["active"], data: function () { return { son2: this.active, } }, methods: { onChange(index) { var that = this; var url = ""; switch (index) { case 0: url = "/h5/Default.aspx"; break; case 1: url = "/h5/Message.aspx"; break; case 2: url = "/h5/My.aspx"; break; } window.location.href = url; }, }, template: ( ' ' + '首页' + ' 消息' + ' 我的' + '' ) })