tradeScreen/src/App.vue

12 lines
151 B
Vue
Raw Normal View History

2023-11-22 18:30:06 +08:00
<script setup lang="ts">
2023-11-22 15:12:56 +08:00
</script>
<template>
2023-11-22 18:30:06 +08:00
<router-view></router-view>
2023-11-22 15:12:56 +08:00
</template>
2023-11-22 18:30:06 +08:00
<style lang="scss">
* {
margin: 0;
padding: 0;
2023-11-22 15:12:56 +08:00
}
2023-11-22 18:30:06 +08:00
</style>