10 lines
201 B
Vue
10 lines
201 B
Vue
|
|
<template>
|
||
|
|
<div class="tool-tip-content">
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script setup>
|
||
|
|
import { onMounted, ref } from 'vue';
|
||
|
|
</script>
|
||
|
|
<style scoped lang="scss">
|
||
|
|
@use '@/styles/mixins.scss' as *;
|
||
|
|
</style>
|