HumanBreak/src/ui/achievement.vue

15 lines
208 B
Vue
Raw Normal View History

2023-02-21 23:22:03 +08:00
<template>
<div id="achievement"></div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
</script>
<style lang="less" scoped>
#achievement {
width: 100%;
height: 100%;
}
</style>