mallBackend/src/App.vue

16 lines
330 B
Vue
Raw Normal View History

2023-12-02 11:33:44 +08:00
<template>
2023-12-04 19:10:26 +08:00
<el-config-provider :size="size" :z-index="zIndex">
<RouterView />
</el-config-provider>
2023-12-02 11:33:44 +08:00
</template>
<script setup lang="ts">
2023-12-07 12:31:06 +08:00
const route = useRoute()
2023-12-04 19:10:26 +08:00
const zIndex = ref(3000)
2023-12-05 17:00:04 +08:00
const size = ref("small")
2023-12-07 12:31:06 +08:00
console.log('routedddd',route)
2023-12-02 11:33:44 +08:00
</script>
2023-12-02 15:30:19 +08:00
<style lang="scss">
@import url("./style/css/reset.css");
</style>