ebike-plus-ui/src/components/HelloWorld.vue

25 lines
385 B
Vue
Raw Normal View History

2024-03-24 17:50:12 +08:00
<template>
<div>
<div>{{ val }}</div>
</div>
</template>
<script setup lang="ts">
import { ref } from "vue";
const val = ref<number>(100);
</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>