fix(modules/web):fix vue warn
This commit is contained in:
@@ -13,7 +13,7 @@
|
|||||||
v-model="printDebug"
|
v-model="printDebug"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
readonly
|
readonly
|
||||||
rows="29"
|
:rows="29"
|
||||||
placeholder="这里用于输出调试信息"
|
placeholder="这里用于输出调试信息"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
v-model="sourceString"
|
v-model="sourceString"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
placeholder="这里输出序列化的JSON数据,可直接导入'阅读'APP"
|
placeholder="这里输出序列化的JSON数据,可直接导入'阅读'APP"
|
||||||
rows="30"
|
:rows="30"
|
||||||
@change="update"
|
@change="update"
|
||||||
style="margin-bottom: 4px"
|
style="margin-bottom: 4px"
|
||||||
></el-input>
|
></el-input>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ export const useBookStore = defineStore("book", {
|
|||||||
state: () => {
|
state: () => {
|
||||||
return {
|
return {
|
||||||
connectStatus: "正在连接后端服务器……",
|
connectStatus: "正在连接后端服务器……",
|
||||||
connectType: "",
|
connectType: "primary",
|
||||||
newConnect: true,
|
newConnect: true,
|
||||||
/**@type {Array<{respondTime:number}>} */
|
/**@type {Array<{respondTime:number}>} */
|
||||||
searchBooks: [],
|
searchBooks: [],
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
<div class="recent-title">最近阅读</div>
|
<div class="recent-title">最近阅读</div>
|
||||||
<div class="reading-recent">
|
<div class="reading-recent">
|
||||||
<el-tag
|
<el-tag
|
||||||
:type="readingRecent.name == '尚无阅读记录' ? 'warning' : ''"
|
:type="readingRecent.name == '尚无阅读记录' ? 'warning' : 'primary'"
|
||||||
class="recent-book"
|
class="recent-book"
|
||||||
size="large"
|
size="large"
|
||||||
@click="
|
@click="
|
||||||
|
|||||||
Reference in New Issue
Block a user