Skip to content

Commit

Permalink
feat(top): 更新flip组件和首页链接
Browse files Browse the repository at this point in the history
  • Loading branch information
nihaojob committed Oct 13, 2024
1 parent 380f5b2 commit 4a5cbf7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
Binary file added src/assets/icon/proIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/flip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: 秦少卫
* @Date: 2022-09-03 19:16:55
* @LastEditors: 秦少卫
* @LastEditTime: 2024-10-07 17:28:06
* @LastEditTime: 2024-10-13 17:14:52
* @Description: 元素翻转
-->

Expand Down Expand Up @@ -41,7 +41,7 @@
</Button>
</Tooltip>
<Tooltip :content="$t('attrSeting.flip.y')">
<Button long :disabled="notSelectOneMode()" @click="flip('Y')" type="text">
<Button long @click="flip('Y')" type="text">
<svg
t="1650443104385"
class="icon"
Expand Down
10 changes: 4 additions & 6 deletions src/views/home/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: 秦少卫
* @Date: 2024-05-17 15:30:21
* @LastEditors: 秦少卫
* @LastEditTime: 2024-10-07 17:45:32
* @LastEditTime: 2024-10-13 17:21:48
* @Description: file content
-->
<template>
Expand Down Expand Up @@ -37,11 +37,8 @@
</div>

<div class="right">
<a href="https://github.com/nihaojob/vue-fabric-editor" target="_blank">
<img
src="https://camo.githubusercontent.com/f440bed74efe64ce92599748090837ec92cc33ead4bf29d115d9745af1415c19/68747470733a2f2f62616467656e2e6e65742f6769746875622f73746172732f6e6968616f6a6f622f7675652d6661627269632d656469746f72"
alt="vue-fbric-editor"
/>
<a href="https://pro.kuaitu.cc/" target="_blank" alt="商业版">
<img width="15" :src="proIcon" alt="vue-fbric-editor" />
</a>
<!-- 管理员模式 -->
<admin />
Expand Down Expand Up @@ -176,6 +173,7 @@
</template>

<script name="Home" setup lang="ts">
import proIcon from '@/assets/icon/proIcon.png';
// 导入元素
import importJson from '@/components/importJSON.vue';
import importFile from '@/components/importFile.vue';
Expand Down
10 changes: 4 additions & 6 deletions src/views/template/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: 秦少卫
* @Date: 2024-05-17 15:30:21
* @LastEditors: 秦少卫
* @LastEditTime: 2024-07-19 16:37:42
* @LastEditTime: 2024-10-13 17:21:09
* @Description: file content
-->
<template>
Expand All @@ -20,11 +20,8 @@
<div class="right">
<Button type="primary" to="/" size="smail" target="_blank">新建设计</Button>
<Divider type="vertical" />
<a href="https://github.com/nihaojob/vue-fabric-editor" target="_blank">
<img
src="https://camo.githubusercontent.com/f440bed74efe64ce92599748090837ec92cc33ead4bf29d115d9745af1415c19/68747470733a2f2f62616467656e2e6e65742f6769746875622f73746172732f6e6968616f6a6f622f7675652d6661627269632d656469746f72"
alt="vue-fbric-editor"
/>
<a href="https://pro.kuaitu.cc/" target="_blank">
<img width="15" :src="proIcon" alt="vue-fbric-editor" />
</a>
<!-- 预览 -->
<login></login>
Expand Down Expand Up @@ -89,6 +86,7 @@
import { toRaw } from 'vue';
import { Spin } from 'view-ui-plus';
import qs from 'qs';
import proIcon from '@/assets/icon/proIcon.png';
import { useRouter } from 'vue-router';
const router = useRouter();
Expand Down

0 comments on commit 4a5cbf7

Please sign in to comment.