vue从一个组件跳转到另一个组件页面router-link的试用

需求从helloworld.vue页面跳到good.vue页面

1.helloworld.vue页面代码

<template>
  <div class="hello">
      我是小可爱
         <router-link :to="{ path: ‘/cute‘}" replace>点我啊,傻</router-link>
  </div>
</template>

<script>
import Good from ‘./good‘
export default {
  name: ‘HelloWorld‘,
  components: { Good },
  data: function () {
    return { }
  },
  methods:{
    clickIt:function (){
      window.location.href="/cute"
    }
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1, h2 {
  font-weight: normal;
}
ul {
  list-style-type: none;
  padding: 0;
}
li {
  display: inline-block;
  margin: 0 10px;
}
a {
  color: #42b983;
}
</style>

2. good.vue页面

<template>
  <div class="hello">
     我是你的小可爱

  </div>
</template>

<script>
export default {
  name: ‘cute‘,
  data: function () {
    return { }
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1, h2 {
  font-weight: normal;
}
ul {
  list-style-type: none;
  padding: 0;
}
li {
  display: inline-block;
  margin: 0 10px;
}
a {
  color: #42b983;
}
</style>

3.index.js

import Vue from ‘vue‘
import Router from ‘vue-router‘
import HelloWorld from ‘@/components/HelloWorld‘
import cute from ‘@/components/good‘

Vue.use(Router)

export default new Router({
  routes: [
    {
      path: ‘/‘,
      name: ‘HelloWorld‘,
      component: HelloWorld
    },
    {
      path: ‘/cute‘,
      name: ‘cute‘,
      component: cute
    },

  ]
})

原文地址:https://www.cnblogs.com/antyhouse/p/9157138.html

时间: 2024-09-28 21:05:50

vue从一个组件跳转到另一个组件页面router-link的试用的相关文章

struts2 从一个action跳转到另一个action的struts.xml文件的配置

解释: 想要用<result>跳转到另一个action,原来的配置代码是: <action name="insertDept" class="struts.org.db.DeptAction" method="insertDept"> <result name="success" type="redirect-action">selectDept</result&g

从一个App跳转到另一个App

在跳入App的info中配置Bundle identifier 在跳入App的info中配置URL Schemes 在另一个应用程序中按照上边的操作添加openURL并运行,就可以跳转了 调用openURL的方法 1 if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"ceshi1://"]]) { 2 [[UIApplication sharedApplication] openURL:[N

从一个程序跳转到另一个应用程序

NSString *url = @"MyUrl://";    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]]; 在另一个应用程序中按照上边的操作添加MyUrl并运行,就可以跳转了

iOS 在TabViewController中的一个ViewController跳转到另一个ViewController

步骤一: #import "AppDelegate.h" 步骤二: 在需要跳转的地方: AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate]; UITabBarController *tabViewController = (UITabBarController *) appDelegate.window.rootViewController; [tabViewCon

SpringMVC从一个controller跳转到另一个controller

return "redirect:……路径……"; @RequestMapping(value = "/index", method = RequestMethod.GET) public String index(ModelMap model) { Admin admin = adminService.getCurrent(); if(admin.getSeller()!=null) { return "redirect:/admin/seller/or

Android -------- 从一个Fragment跳转到另一个Fragment

##一.直接getActivity,使用activity的fragmenttransation的replace仿佛替换 private void changeToAnotherFragment(){         //如果是用的v4的包,则用getActivity().getSuppoutFragmentManager();         FragmentManager fm = getActivity().getFragmentManager();         //注意v4包的配套使用

从一个dialog跳转到另一个dialog情况:

原理:dismiss再弹出,把dialog设为全局对象. if (dialog != null && dialog.isShowing() && !(Activity.)isFinishing()) { dialog.dismiss(); } 新的方式:http://blog.csdn.net/think_soft/article/details/7531163

SpringMVC从Controller跳转到另一个Controller

1. 需求背景 需求:spring MVC框架controller间跳转,需重定向.有几种情况:不带参数跳转,带参数拼接url形式跳转,带参数不拼接参数跳转,页面也能显示. 本来以为挺简单的一件事情,并且个人认为比较常用的一种方式,一百度全都有了,这些根本不是问题,但是一百度居然出乎我的意料,一堆都不是我想要的结果.无奈啊,自己写一篇比较全都供以后大家一百度吧,哈哈哈...是这些写的不是很全都人们给了我写这篇博客的动力. 2. 解决办法 需求有了肯定是解决办法了,一一解决,说明下spring的跳

SpringMVC从Controller跳转到另一个Controller(转)

http://blog.csdn.net/jackpk/article/details/44117603 [PK亲测] 能正常跳转的写法如下: return "forward:aaaa/bbbb.do"; return "redirect:aaaa/bbbb.do"; return new ModelAndView("forward:bbbb.do", null); return new ModelAndView("redirect:b