mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
18 lines
235 B
Vue
18 lines
235 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>
|