vue里面的router-view标签是什么意思
2017-06-07
展开全部
Vue适合单页面应用,当你需要多个页面的时候,传统的web是通过转跳链接的方式实现的,而Vue可以通过路由的方式实现页面的专挑
demo:
图片组件:
<template>
<img src="…/example/img.png/>
</template>
组件1
<template>
//点击a标签实现路由的转跳
<a @click="showImg">
<router-link></router-link>
</template>
<script> methods:{ showImg:function(){ //下面的字符串为路由文件定义的路径 this.$router.push("/img") } } </script>
demo:
图片组件:
<template>
<img src="…/example/img.png/>
</template>
组件1
<template>
//点击a标签实现路由的转跳
<a @click="showImg">
<router-link></router-link>
</template>
<script> methods:{ showImg:function(){ //下面的字符串为路由文件定义的路径 this.$router.push("/img") } } </script>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询