fix: 🐛 移除unplugin-icon插件,避免vue-template-compiler编译器在某些机器引发的报错

This commit is contained in:
ray
2024-10-08 14:42:49 +08:00
parent 57bca54848
commit 20dc49df6c
28 changed files with 229 additions and 130 deletions

View File

@@ -10,8 +10,9 @@ const iconName = ref("edit");
type="primary"
target="_blank"
class="mb-10"
>示例源码 请点击>>>></el-link
>
示例源码 请点击>>>>
</el-link>
<icon-select v-model="iconName" />
</div>
</template>

View File

@@ -5,8 +5,9 @@
type="primary"
target="_blank"
class="mb-10"
>示例源码 请点击>>>></el-link
>
示例源码 请点击>>>>
</el-link>
<el-alert :closable="false" title="菜单一级">
<router-view />

View File

@@ -138,8 +138,8 @@ function paint(
<h3>基于canvas实现的签名组件</h3>
<header>
<el-button type="primary" @click="handleSaveImg">保存为图片</el-button>
<el-button @click="handleToFile"> 保存到后端 </el-button>
<el-button @click="handleClearSign"> 清空签名 </el-button>
<el-button @click="handleToFile">保存到后端</el-button>
<el-button @click="handleClearSign">清空签名</el-button>
</header>
<canvas
ref="canvas"
@@ -151,8 +151,7 @@ function paint(
@touchstart="onEventStart"
@touchmove.stop.prevent="onEventMove"
@touchend="onEventEnd"
>
</canvas>
></canvas>
<img v-if="imgUrl" :src="imgUrl" alt="签名" />
</div>
</template>

View File

@@ -17,7 +17,7 @@ const value = ref("初始内容");
</el-link>
<editor
v-model="value"
style=" z-index: 99999;height: calc(100vh - 180px)"
style="z-index: 99999; height: calc(100vh - 180px)"
/>
</div>
</template>