feat: 添加 terser 作为构建工具的压缩选项
All checks were successful
/ playwright (push) Successful in 56s
/ depcheck (push) Successful in 1m46s
/ build-and-deploy-to-vercel (push) Successful in 1m39s

This commit is contained in:
严浩
2025-01-08 10:25:05 +08:00
parent 3292800f0d
commit df0ccdaed1
5 changed files with 101 additions and 74 deletions

View File

@ -1,16 +0,0 @@
<template>
<div>
<button class="green" @click="函数($event)">Back</button>
<h1>中文-页面.page.vue</h1>
</div>
</template>
<script setup lang="ts">
const router = useRouter();
const 函数 = function (e: MouseEvent) {
console.log(函数, 'e :>> ', e);
router.back();
};
</script>
<style scoped></style>