You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
vite-vue3-lowcode/preview/App.vue

22 lines
341 B

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