2022-10-06|閱讀時間 ‧ 約 1 分鐘

[5] 寫一個 Vue 頁面

定義路由

首先先來定義路由,先把上一篇寫的 home.vue 定義在根路由。
打開 src/router/index.ts,在 routes 內定義
{     path: '/',     name: 'home',     component:()=>import('@/components/home.vue') }
path 定義 urlcomponent 定義要指向哪個 vue 頁面,component:()=import('@/components/home.vue') 裡面的 @ 指的是 src/ 路徑

導入 UI component library

付費訂閱
分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.