<template id="vip">
<h1> <button @click="back()">返回</button> 这是vip内容</h1>
</template>
<script>
export default{
methods:{
back(){
// 返回到上一级
// this.$router.go(-1)
// 可以指定跳转到某一个页面
// this.$router.push('/movie')
// replace替换当前页面
this.$router.replace('/movie')
}
}
}
</script>