Files
hoc-element-affix/example/App.vue

14 lines
222 B
Vue
Raw Normal View History

2020-10-06 17:03:32 +08:00
<template>
2022-01-01 16:14:33 +08:00
<router-view v-slot="{ Component }">
<component :is="Component" />
</router-view>
2020-10-06 17:03:32 +08:00
</template>
<script>
2022-01-01 16:14:33 +08:00
import { defineComponent } from 'vue'
export default defineComponent({
2020-10-06 17:03:32 +08:00
name: 'App'
2022-01-01 16:14:33 +08:00
})
2020-10-06 17:03:32 +08:00
2022-01-01 16:14:33 +08:00
</script>