PinPuYi.vue
This commit is contained in:
16
src/components/PinPuYi/PinPuYi.vue
Normal file
16
src/components/PinPuYi/PinPuYi.vue
Normal file
@ -0,0 +1,16 @@
|
||||
<script setup lang="ts">
|
||||
import DeviceImage from './pin-pu-yi-bg.png';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<img :src="DeviceImage" alt="频谱仪设备照片" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
img {
|
||||
width: calc(2554px * 0.5);
|
||||
height: calc(1626px * 0.5);
|
||||
}
|
||||
</style>
|
BIN
src/components/PinPuYi/pin-pu-yi-bg.png
Normal file
BIN
src/components/PinPuYi/pin-pu-yi-bg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 705 KiB |
13
src/pages/Page/PinPuYi.page.vue
Normal file
13
src/pages/Page/PinPuYi.page.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<!--
|
||||
http://localhost:4730/Page/PinPuYi
|
||||
-->
|
||||
<script setup lang="ts">
|
||||
definePage({ meta: { title: '频谱仪', hidden: !$__DEV__ } });
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<template v-if="$__DEV__">
|
||||
<PinPuYi />
|
||||
</template>
|
||||
<template v-else> 🤡 </template>
|
||||
</template>
|
Reference in New Issue
Block a user