时间:2021-05-26
vue --version查看版本 是 2.8.2;
vue 2.8.2版本配置刚进入时候的默认页面比如这里面的goods页面;
1.在路由文件下里面的index.js文件 添加 { path: '/', redirect: '/goods/goods' }, // 默认就跳转此页面
2.也可以在app.vue里面配置
this.$router.push('/goods/goods'); // 页面加载时跳转详情看下面
export default { name: 'app', components: { 'v-header': header }, created () {// this.$router.push('/goods/goods'); // 页面加载时跳转 } };前提都配置了此组件路由index.js文件如下
import Vue from 'vue';import Router from 'vue-router';import goods from '../components/goods/goods';import ratings from '../components/ratings/ratings';import seller from '../components/seller/seller';Vue.use(Router);export default new Router({ routes: [ { path: '/', redirect: '/goods/goods' }, // 默认就跳转此页面 { path: '/goods/goods', name: 'goods', component: goods }, { path: '/ratings/ratings', name: 'ratings', component: ratings }, { path: '/seller/seller', name: 'seller', component: seller } ]});以上这篇vue 2.8.2版本配置刚进入时候的默认页面方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本人主要做c#winform应用,刚接触vue,发现用vue做单页面应用的比较多,多页面的资料很少,特别是用vue3.0版本做多页面的资料,更少,所以自己整理一
先给大家介绍下SpringBoot设置首页(默认页)跳转功能最近springboot开发需要设置个默认页面,就相当于我访问http://要直接跳转到登录页面。方
手机网易云发动态的方法是: 1、打开网易云音乐进入应用默认页面后点击上方【重叠人像】。2、接着在默认动态页面中点击左下角【铅笔】,编辑动态内容后点击右上角【发
webpack打包vue项目的时候默认会把vue里的css打包到页面上。webpack.config.js里的plugins加上以下配置newwebpack.L
vue本身不支持发送AJAX请求,需要使用vue-resource(vue1.0版本)、axios(vue2.0版本)等插件实现axios是一个基于Promis