直接上代码
//router.ts
import { createWebHashHistory, createRouter } from 'vue-router';
import { h } from 'vue';
const history = createWebHashHistory();
import index from '@/views/index.vue';
export const router = createRouter({
history,
routes: [
{
path: '/home',
component: h(index, key: 'index'})
}
]
}
h是vue渲染虚拟DOM的方法
网友评论