mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 07:27:06 +08:00
17 lines
198 B
Vue
17 lines
198 B
Vue
<template>
|
|
<div>
|
|
<p>query: {{$route.query}}</p>
|
|
<p>params: {{$route.params}}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Demo'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|