🎨 修正一些小错误

This commit is contained in:
BTMuli
2023-12-08 13:17:58 +08:00
parent 0cb68dfe6f
commit 48f6d95c7a
6 changed files with 4 additions and 21 deletions

3
.vscode/launch.json vendored
View File

@@ -1,7 +1,4 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{

View File

@@ -21,7 +21,7 @@ Update: 2023-12-07
基于 Tauri 的原神工具应用,支持 Windows 和 MacOS 平台。
Game Tool for Genshin Impact player, supports Windows and MacOS.
Game Tool for Genshin Impact player, supports Windows and macOS.
## 下载 / Download

View File

@@ -93,7 +93,7 @@
</v-list-item>
</v-list-group>
<div class="bottom-menu">
<v-menu open-on-click location="end">
<v-menu :open-on-click="true" location="end">
<template #activator="{ props }">
<v-list-item :title="userInfo.nickname" v-bind="props">
<template #prepend>

View File

@@ -11,7 +11,7 @@
v-model="search"
append-icon="mdi-magnify"
label="搜索"
single-line
:single-line="true"
hide-details
@click:append="searchCard"
@keyup.enter="searchCard"

View File

@@ -13,7 +13,7 @@
class="news-search"
append-icon="mdi-magnify"
label="请输入米游社帖子 ID"
single-line
:single-line="true"
hide-details
@click:append="searchPost"
@keyup.enter="searchPost"

View File

@@ -291,18 +291,4 @@ declare namespace TGApp.Plugins.Mys.Post {
top_n: unknown[];
answer_num: number;
}
/**
* @description 帖子内容-结构化
* @description 当用户发帖时,解析内容用这个,为 post.content 的反序列化
* @since Alpha v0.2.1
* @interface Content
* @property {string} describe 描述
* @property {string[]} images 图片 URL
* @return Content
*/
interface PostContent {
describe: string;
images?: string[];
}
}