2
0
mirror of https://github.com/tusen-ai/naive-ui.git synced 2025-01-12 12:25:16 +08:00
naive-ui/demo/debug-components/routerDebug.vue
2020-09-03 16:45:52 +08:00

18 lines
236 B
Vue

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