博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Vue实现简单路由跳转
阅读量:2065 次
发布时间:2019-04-29

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

1. 新建一个项目

2. 在components中新建一个文件 这里是test1.vue,内容如下

3. 在router—>index.js中注册 test1.vue组件 --内容如下(整个文件)

import Vue from 'vue'import Router from 'vue-router'import HelloWorld from '@/components/HelloWorld'import test1 from '@/components/test1'Vue.use(Router)export default new Router({  routes: [    {      path: '/',      name: 'HelloWorld',      component: HelloWorld    },{      path: '/to2',      name: 'test1',      component: test1  }  ]})
4. 清空HelloWorld.vue文件原内容,输入如下内容

效果图

在这里插入图片描述

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

你可能感兴趣的文章
Leetcode C++ 《第203场周赛》
查看>>
云原生 第十三章 Kubernetes网络概念及策略控制
查看>>
《redis设计与实现》 第一部分:数据结构与对象 || 读书笔记
查看>>
《redis设计与实现》 第二部分(第9-11章):单机数据库的实现
查看>>
算法工程师 面经2019年5月
查看>>
搜索架构师 一面面经2019年6月
查看>>
稻草人手记
查看>>
第一次kaggle比赛 回顾篇
查看>>
leetcode 50. Pow(x, n)
查看>>
leetcode 130. Surrounded Regions
查看>>
【托业】【全真题库】TEST2-语法题
查看>>
博客文格式优化
查看>>
【托业】【新托业全真模拟】疑难语法题知识点总结(01~05)
查看>>
【SQL】group by 和order by 的区别。
查看>>
【Python】详解Python多线程Selenium跨浏览器测试
查看>>
Jmeter之参数化
查看>>
Shell 和Python的区别。
查看>>
Python 列表(list)、字典(dict)、字符串(string)常用基本操作小结
查看>>
Loadrunner之https协议录制回放报错如何解决?(九)
查看>>
python中xrange和range的异同
查看>>