mallBackend/src/App.vue

14 lines
274 B
Vue

<template>
<el-config-provider :size="size" :z-index="zIndex">
<RouterView />
</el-config-provider>
</template>
<script setup lang="ts">
const zIndex = ref(3000)
const size = ref("small")
</script>
<style lang="scss">
@import url("./style/css/reset.css");
</style>