CaricatureView.vue
337 字节
<template>
<div class="about">
<h1>漫画</h1>
<van-button type="primary" @click="jump">测试跳转</van-button>
</div>
</template>
<script>
export default {
name: 'CaricatureView',
data() {
return {}
},
methods: {
jump() {
this.$router.push({
name: 'DetailView'
})
}
}
}
</script>