mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-07-21 21:11:48 +08:00
15 lines
196 B
Vue
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>
|