hookehuyr

chore: 删除未使用的图片文件并调整测试代码

删除 `src/assets/images` 目录下未使用的图片文件,简化代码库。
调整 `src/views/test.vue` 文件中的测试代码,并启用调试模式。
Showing 46 changed files with 15 additions and 9 deletions
......@@ -11,7 +11,7 @@ VITE_PROXY_PREFIX = /srv/
VITE_OUTDIR = mlaj
# 是否开启调试
VITE_CONSOLE = 0
VITE_CONSOLE = 1
# appID相关
VITE_APPID=微信appID
......
<!--
* @Date: 2025-03-21 13:12:37
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-03-21 13:12:54
* @FilePath: /mlaj/src/views/test.vue
* @Description: 文件描述
-->
<!--
* @Date: 2025-03-20 19:53:12
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-03-20 23:56:05
......@@ -13,11 +6,24 @@
* @Description: 文件描述
-->
<script setup>
const arr = [];
arr.push({ a: '1' });
arr.push({ a: '2', b: 'random1' });
arr.push({ a: '3', b: 'random2', c: true });
arr.push({ a: '4', b: 'random3', d: 123 });
arr.push({ a: '5', b: 'random4', e: new Date() });
const arr2 = arr.map(item => {
return {
...item,
b: 'random5'
}
})
console.warn(arr2);
</script>
<template>
<div></div>
</template>
<style>
......