mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-02-08 12:29:27 +08:00
14 lines
204 B
Vue
14 lines
204 B
Vue
|
<template>
|
||
|
<div id="load"></div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup></script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
#load {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
</style>
|