|
|
|
@ -57,7 +57,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
<script setup>
|
|
|
|
import { ref, computed } from 'vue';
|
|
|
|
import { ref, computed } from 'vue';
|
|
|
|
import { Search, Warning, Sunny, Moon, FullScreen, Printer, Picture } from '@element-plus/icons-vue';
|
|
|
|
import { Search, Warning, Sunny, Moon, FullScreen, Printer, Picture, Switch } from '@element-plus/icons-vue';
|
|
|
|
|
|
|
|
|
|
|
|
// 主题状态
|
|
|
|
// 主题状态
|
|
|
|
const isDarkTheme = ref(false);
|
|
|
|
const isDarkTheme = ref(false);
|
|
|
|
@ -75,6 +75,7 @@ const navItems = ref([
|
|
|
|
{ icon: Picture, name: 'HTML转图片', url: '/#/htmlToImg' },
|
|
|
|
{ icon: Picture, name: 'HTML转图片', url: '/#/htmlToImg' },
|
|
|
|
{ icon: Picture, name: '图片压缩', url: '/#/demo/compressImage' },
|
|
|
|
{ icon: Picture, name: '图片压缩', url: '/#/demo/compressImage' },
|
|
|
|
{ icon: Picture, name: '图片标注', url: '/#/demo/tuiImageEditor' },
|
|
|
|
{ icon: Picture, name: '图片标注', url: '/#/demo/tuiImageEditor' },
|
|
|
|
|
|
|
|
{ icon: Switch, name: 'SCSS转换', url: '/#/demo/scssLiveTranslate' },
|
|
|
|
]);
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
|
|
// 计算属性:过滤后的导航项
|
|
|
|
// 计算属性:过滤后的导航项
|
|
|
|
|