mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-02-08 20:39:25 +08:00
15 lines
194 B
Vue
15 lines
194 B
Vue
|
<template>
|
||
|
<div id="desc"></div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { ref } from 'vue';
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
#desc {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
</style>
|