頁面無變化
我是用 vue init project創(chuàng)建項目的,現(xiàn)在按視頻做下來,無論是點擊按鈕跳轉還是直接輸入連接地址,都是只顯示main.js打開的主頁內容,視頻里也沒有講這個文件的設置,求大佬提點
main.js
import?Vue?from?'vue' //?import?App?from?'./App' import?router?from?'./router' import?Login?from?'./views/Login' Vue.config.productionTip?=?false /*?eslint-disable?no-new?*/ new?Vue({ ??el:?'#app', ??router, ??components:?{?Login?}, ??template:?'<Login/>' })
2020-02-24
我用命令創(chuàng)建項目也沒有router和vuex組件,用vue ui創(chuàng)建項目就有了