mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-02-01 07:49:25 +08:00
15 lines
206 B
Vue
15 lines
206 B
Vue
|
<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>
|