2024-03-28 23:56:57 +08:00
|
|
|
<template>
|
2024-03-31 15:51:00 +08:00
|
|
|
<div>
|
|
|
|
|
首页
|
|
|
|
|
<img :src="tom" />
|
|
|
|
|
</div>
|
2024-03-28 23:56:57 +08:00
|
|
|
</template>
|
|
|
|
|
|
2024-03-31 15:51:00 +08:00
|
|
|
<script setup>
|
|
|
|
|
import tom from "@/assets/img/tom.jpg";
|
|
|
|
|
</script>
|
2024-03-28 23:56:57 +08:00
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|