添加 cl-canvas 组件

This commit is contained in:
icssoa
2025-08-19 18:10:49 +08:00
parent 7cb2014ff1
commit 67a6b2c29f
22 changed files with 1261 additions and 2 deletions

View File

@@ -73,6 +73,7 @@
</view>
</view>
<!-- 自定义底部导航栏 -->
<tabbar></tabbar>
<!-- 主题设置 -->
@@ -400,6 +401,11 @@ const data = computed<Item[]>(() => {
icon: "crop-line",
path: "/pages/demo/other/cropper"
},
{
label: t("Canvas"),
icon: "markup-line",
path: "/pages/demo/other/canvas"
},
{
label: t("富文本"),
icon: "text-snippet",

View File

@@ -236,12 +236,13 @@
</cl-list>
</view>
<!-- 自定义底部导航栏 -->
<tabbar></tabbar>
</cl-page>
</template>
<script setup lang="ts">
import { isDark, isMp, parseClass, router, useStore } from "@/cool";
import { router, useStore } from "@/cool";
import { t } from "@/locale";
import { useUi } from "@/uni_modules/cool-ui";
import Tabbar from "@/components/tabbar.uvue";