在Vue 3中,有多种方式可以实现页面跳转。以下是一些常见的方式和相应的代码示例:
1. 使用路由导航(Vue Router)进行页面跳转:
// 在路由配置文件中定义路由
import { createRouter, createWebHistory } from 'vue-router';
const routes = [
{ path: '/', component: Home },
{ path: 'https://www.chaoxunxing.com/about', component: About },
// ...
];
const router = createRouter({
history: createWebHistory(),
routes,
});
// 在组件中使用路由导航
import { useRouter } from 'vue-router';
export default {
methods: {
goToAbout() {
const router = useRouter();
router.push('https://www.chaoxunxing.com/about');
},
},
};
2. 使用“
3. 使用“window.location“进行页面跳转:
export default {
methods: {
goToAbout() {
window.location.href = 'https://www.chaoxunxing.com/about';
},
},
};
4. 使用““标签进行页面跳转:
这些是一些常见的页面跳转方式,你可以根据具体的需求选择适合的方式来实现页面跳转。