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