HumanBreak/src/ui/study.vue
2023-01-05 22:21:40 +08:00

15 lines
196 B
Vue

<template>
<div id="study"></div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
</script>
<style lang="less" scoped>
#study {
width: 100%;
height: 100%;
}
</style>