2020-10-14 14:34:58 +08:00

30 lines
307 B
Vue

<!-- -->
<template>
<div>
home
</div>
</template>
<script>
export default {
data () {
return {
}
},
computed: {},
beforeMount () {},
mounted () {
console.log('this.$route', this.$route)
},
methods: {},
watch: {}
}
</script>
<style lang='' scoped>
</style>