23 lines
406 B
Vue
23 lines
406 B
Vue
<template>
|
|
<div>
|
|
<div class="bbb">{{ val }}</div>
|
|
<img :src="Tom" />
|
|
<SvgIcon :name="'snow'" :size="20" />
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
import Tom from "@assets/img/tom.jpg";
|
|
const val = ref<number>(300);
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.read-the-docs {
|
|
color: #888;
|
|
}
|
|
.bbb {
|
|
user-select: none;
|
|
width: 200px;
|
|
padding: 10px;
|
|
}
|
|
</style>
|