2024-03-24 17:50:12 +08:00
|
|
|
<template>
|
2024-03-24 23:39:51 +08:00
|
|
|
<div></div>
|
2024-03-24 17:50:12 +08:00
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref } from "vue";
|
2024-03-24 23:39:51 +08:00
|
|
|
const val = ref<number>(200);
|
2024-03-24 17:50:12 +08:00
|
|
|
</script>
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.read-the-docs {
|
|
|
|
|
color: #888;
|
|
|
|
|
}
|
|
|
|
|
.aaa {
|
|
|
|
|
border: 1px solid red;
|
|
|
|
|
.bbb {
|
|
|
|
|
color: $primary-color;
|
|
|
|
|
user-select: none;
|
|
|
|
|
width: 200px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|