Vue-實現本項目頁面之間跳轉

一、在template模板中添加button按鈕加入click事件

<el-button type="primary" @click="func()">添加試題</el-button>

二、在methods中寫入路徑

func() {

      this.$router.push({ path: "add-question" });

    },

三、修改路由文件,加入所有跳轉的本地界面

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章