22 lines
337 B
Vue
22 lines
337 B
Vue
|
<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>
|