HumanBreak/src/ui/skillTree.vue

15 lines
206 B
Vue
Raw Normal View History

2022-12-30 15:56:47 +08:00
<template>
<div id="skill-tree"></div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
</script>
<style lang="less" scoped>
#skill-tree {
width: 100%;
height: 100%;
}
</style>