duanluan's recent timeline updates
duanluan

duanluan

V2EX member #279414, joined on 2018-01-04 03:39:35 +08:00
duanluan's recent replies
Nov 6, 2025
Replied to a topic by adsl95 Android 微信公众号的广告有办法去掉吗?
WAuxiliary 模组可以去掉公众号文章等广告,但是现在微信风控严重,可以先试试,提示你开了再关掉。
Sep 17, 2024
Replied to a topic by qq309187341 Vue.js 求解 vite+vue3 项目中关于动态图标的问题
那肯定是嗅觉浏览器,有视频嗅探,嗅探后的视频播放器功能非常强大。
haikuo.lanzouj.com/b0ekkjzi
Sep 13, 2024
Replied to a topic by qq309187341 Vue.js 求解 vite+vue3 项目中关于动态图标的问题
src/components/Iconify.vue:

<template>
<el-icon>
<Icon :icon="icon"/>
</el-icon>
</template>

<script setup lang="ts">
import {Icon} from '@iconify/vue';

const props = defineProps({
icon: {
type: String,
default: null,
}
});
</script>

src/components/RecursiveMenu.vue:

<template>
<template v-for="item in menuTree">
<template v-if="item.children && item.children.length > 0">
<el-sub-menu :index="String(item.id)">
<template #title>
<Iconify :icon="item.icon"/>
<span>{{ item.name }}</span>
</template>
<RecursiveMenu :menu-tree="item.children"/>
</el-sub-menu>
</template>
<template v-else>
<el-menu-item :index="String(item.id)">
<Iconify :icon="item.icon"/>
<span>{{ item.name }}</span>
</el-menu-item>
</template>
</template>
</template>

<script setup lang="ts">
import Iconify from "@/components/Iconify.vue";

const props = defineProps({
menuTree: {
type: Array as PropType<any[]>,
required: true
}
});
</script>
CentOS 迁移 OpenCloudOS 指引: https://cloud.tencent.com/document/product/213/85728
如何安全快速地从 Centos 迁移到 openEuler: https://www.openeuler.org/zh/blog/20220701-centos/20220701.html
Jun 27, 2024
Replied to a topic by diagnostics Java 有多少人还在用 Maven 构建项目?
感觉都是好复杂好高级的操作,让我想起了以前一家公司 build.gradle 自定义脚本写老长,后来全被我慢慢删了也能正常跑
一直用的 KeePassXC 和 Keepass2Android ,同步只需要同步文件就行了
Jun 20, 2024
Replied to a topic by diagnostics Java 有多少人还在用 Maven 构建项目?
@iseki
Maven 中央库新平台我了解到的只有下列变更:
1. 如果要用原包名上传新依赖,需要发邮件申请迁移,迁移到新平台后无法撤回。
2. 需要换个插件,description 、scm.url 等必填,不再支持快照版本。
3. 发布新包无需发工单,发布后后台自行通过(或插件配置自动通过)即可。
4. 官方插件仅支持 Maven 。
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   937 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 19ms · UTC 19:09 · PVG 03:09 · LAX 12:09 · JFK 15:09
♥ Do have faith in what you're doing.