ionic+vue 路由跳转方法
本文介绍了ionic+vue路由跳转的方法,并结合实际的例子详细介绍了实现ionic+vue路由跳转的相关步骤。
1、首先,需要安装的第三方库:
npm install vue-router --save
2、然后,在main.js中引入vue-router:
//main.js
import VueRouter from 'vue-router'
Vue.use( VueRouter )
3、然后,在src文件夹下创建一个router文件夹,用来存放路由:
//router/index.js
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)
// 路由懒加载
const Home = () => import('views/home/Home')
const Category = () => import('views/category/Category')
const Cart = () => import('views/cart/Cart')
const Profile = () => import('views/profile/Profile')
// 创建路由对象
const routes = [
{
path: '/',
redirect: '/home'
},
{
path: '/home',
component: Home
},
{
path: '/category',
component: Category
},
{
path: '/cart',
component: Cart
},
{
path: '/profile',
component: Profile
}
]
// 创建路由实例对象
const router = new VueRouter({
routes,
mode: 'history'
})
// 导出路由实例
export default router
4、然后,在main.js中引入路由:
//main.js
import router from './router/index'
new Vue({
el: '#app',
router,
render: h => h(App)
})
5、最后,在APP.vue中添加路由组件:
//APP.vue
<template>
<div id='app'>
<router-view></router-view>
</div>
react router 方法 </template>
以上就是ionic+vue路由跳转的方法,通过以上步骤可以实现ionic+vue的路由跳转。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论