sign-stream/src/App.vue

17 lines
171 B
Vue
Raw Normal View History

2024-01-31 07:42:39 +00:00
<script setup>
2024-02-05 05:10:46 +00:00
2024-01-31 07:42:39 +00:00
</script>
<template>
2024-02-05 05:10:46 +00:00
<div>
2024-01-31 07:42:39 +00:00
<router-view></router-view>
</div>
</template>
2024-02-05 05:10:46 +00:00
<style>
2024-02-18 08:50:06 +00:00
*, *::before, *::after {
box-sizing: border-box;
}
2024-01-31 07:42:39 +00:00
</style>