博客
关于我
Vue.js-TabBar实现
阅读量:266 次
发布时间:2019-03-01

本文共 1363 字,大约阅读时间需要 4 分钟。

1.1 项目目录

创建项目: vue init webpack tabbardemo

1.2 项目实现代码

项目所需的图片: 提取码:bo79

App.vue

MainTabBar.vue

TabBar.vue

TabBarItem.vue

Cart.vue

Category.vue

Home.vue

Profile.vue

index.js

import Vue from 'vue'import VueRouter from "vue-router";const Home = () => import('views/home/Home')const Category = () => import('views/category/Category')const Cart = () => import('views/cart/Cart')const Profile = () => import('views/profile/Profile')// 1.安装插件Vue.use(VueRouter)// 2.创建路由对象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,  // 使用history  mode: 'history'})// 3.导出routerexport default router

1.3 执行结果

1.4 路径简写

转载地址:http://fnjx.baihongyu.com/

你可能感兴趣的文章
Nginx知识详解(理论+实战更易懂)
查看>>
Nginx简单介绍
查看>>
Nginx系列6之-rewirte功能使用案例总结
查看>>
nginx线程模型理解
查看>>
nginx自动摘除和恢复后端服务,进行自动检测
查看>>
NGINX自动清理180天之前的日志
查看>>
Nginx虚拟主机配置
查看>>
Nginx虚拟目录配置文件(包含PHP配置与重写)
查看>>
Nginx访问控制_登陆权限的控制(http_auth_basic_module)
查看>>
nginx访问控制配置
查看>>
nginx负载均衡
查看>>
Nginx负载均衡
查看>>
Nginx负载均衡与动静分离架构实现
查看>>
Nginx负载均衡和F5的区别---系统运维工作笔记001
查看>>
nginx负载均衡和反相代理的配置
查看>>
nginx负载均衡器处理session共享的几种方法(转)
查看>>
nginx负载均衡的5种策略
查看>>
nginx负载均衡的5种策略(转载)
查看>>
nginx负载均衡的五种算法
查看>>
Nginx负载均衡详解
查看>>