vite-vue3-lowcode/preview/App.vue

23 lines
341 B
Vue
Raw Normal View History

2021-05-06 00:35:05 +08:00
<template>
2021-05-06 20:10:19 +08:00
<router-view #="{ Component, route }">
<component :is="Component" :key="route.path" />
</router-view>
2021-05-06 00:35:05 +08:00
</template>
<script lang="ts">
2021-05-06 20:10:19 +08:00
import { defineComponent } from 'vue'
export default defineComponent({
name: 'App',
setup() {
return {}
}
})
2021-05-06 00:35:05 +08:00
</script>
<style>
body::-webkit-scrollbar {
width: 0;
}
</style>