mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-17 06:36:36 +08:00
14 lines
198 B
Vue
14 lines
198 B
Vue
|
|
<template>
|
||
|
|
<v-main>
|
||
|
|
<v-container fluid>
|
||
|
|
<router-view :key="$route.path" />
|
||
|
|
</v-container>
|
||
|
|
</v-main>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'DefaultView',
|
||
|
|
}
|
||
|
|
</script>
|