This commit is contained in:
Horis
2023-04-14 22:14:04 +08:00
parent dc304d31d9
commit 6932f767c9
23 changed files with 116 additions and 65 deletions
+6 -2
View File
@@ -1,5 +1,6 @@
<template>
<el-input
id="source-json"
v-model="sourceString"
type="textarea"
placeholder="这里输出序列化的JSON数据,可直接导入'阅读'APP"
@@ -33,8 +34,11 @@ watchEffect(async () => {
}
});
</script>
<style>
.el-input {
<style scoped>
:deep(.el-input) {
width: 100%;
}
:deep(#source-json) {
height: calc(100vh - 50px);
}
</style>