chenzhou/src/components/Tools.vue

22 lines
337 B
Vue
Raw Normal View History

2024-01-16 17:02:53 +08:00
<script setup>
import { ref, watch, onMounted } from 'vue';
</script>
<template>
<div class="tools">
<button>Home</button>
<button>Settings</button>
<button>AutoScroll</button>
</div>
</template>
<style scoped>
.tools {
background: #00f;
padding: 8px;
position: absolute;
bottom: 24px;
left: 24px;
}
</style>