2025-03-11
各类分享
00

按照如下三步操作即可:

  1. 使用微信关注"公众平台安全助手";
  2. 关注后点击左下角"绑定查询";
  3. 找到要解绑的公众号或小程序;
  4. 直接解绑即可;
123
imageimageimage
2025-03-11
编程与技术
00

代码如下:

html
<script setup lang="ts"> const { image } = defineProps<{ image?: string }>(); const loading = ref(true); onMounted(() => { loading.value = false; }); </script> <template> <div class="m-2 w-40 h-40 border border-[#f6467c] rounded-sm"> <div class="relative image bg-[rgba(242,197,211,0.5)] p-2 rounded-sm cursor-pointer overflow-hidden" > <img v-if="!loading" :src="image" alt="image card" class="aspect-square w-full h-full object-contain rounded-sm" /> <div v-if="loading" class="absolute inset-0 w-full h-full flex justify-center items-center rounded-sm bg-gray-100" > <div class="w-12 h-12 h-12 border-b-2 border-gray-300 border-opacity-50 rounded-full animate-spin" ></div> </div> </div> </div> </template> <style scoped></style>
2025-03-11
编程与技术
00

模型信息

提示:本文翻译自官方文档!请以Civitai模型页面最新说明文档为准!

前排提示:老狗将在文章【优质图提示词记录】中不定期记录常用的提示词,可以参考~

使用说明

ComfyUI 使用问题

如果用户在使用 ComfyUI 时遇到问题,请尝试使用以下图像读取工作流程。此方法或可帮助解决问题。 workflow (3).png

2025-03-10
编程与技术
00

Vuetify 日历组件的使用教程

本文以自身使用场景为主题介绍 Vuetify 日历组件的用法,展示如何结合该组件处理日历上的事件、按钮、以及如何管理和显示支出和收入的流水数据。更多信息请查阅 Vuetify 官网资料

在本文中,将重点介绍如何使用 Vuetify 日历组件及相关的插槽和功能,来展示一个日历页面,其中包括跨天显示事件、日期点击事件和动态按钮添加功能。

本文代码示例来自老狗开源的账本软件:【cashbook

2025-03-09
编程与技术
00

Flutter嵌套滚动问题

使用Flutter开发APP时,一般都会遇到的一个问题:是嵌套滚动视图(nested scrollable views)。比如有两个可滚动区域:外部的 CustomScrollView 和内部 TabBarView 中的 SingleChildScrollView。这导致了滚动手势被内部的滚动区域"吞噬",无法传递到外部。

下面是 Claude3.7 给出的几种解决方案可以考虑(有些不靠谱,慎用!):