naive-ui/demo/debug-pages/routerDebug.vue

18 lines
235 B
Vue
Raw Normal View History

<template>
2020-12-12 13:51:22 +08:00
<div style="padding: 100px">
<button @click="f">
router debug
</button>
</div>
</template>
<script>
export default {
methods: {
f () {
this.$router.push('/n-popover?999')
}
}
}
</script>