leisure-core 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<el-button type="primary" @click="onSave">保存</el-button>
|
|
9
9
|
</div>
|
|
10
10
|
<le-editor
|
|
11
|
-
style="height:
|
|
11
|
+
:style="'height:' + height"
|
|
12
12
|
v-model="content"
|
|
13
13
|
ref="vueeditor"
|
|
14
14
|
useCustomImageHandler
|
|
@@ -50,6 +50,10 @@ export default {
|
|
|
50
50
|
type: String,
|
|
51
51
|
default: () => {},
|
|
52
52
|
},
|
|
53
|
+
height: {
|
|
54
|
+
type: String,
|
|
55
|
+
default: "500px",
|
|
56
|
+
},
|
|
53
57
|
},
|
|
54
58
|
data() {
|
|
55
59
|
return {
|
|
@@ -130,7 +134,7 @@ export default {
|
|
|
130
134
|
margin-right: 10px;
|
|
131
135
|
}
|
|
132
136
|
.footer {
|
|
133
|
-
margin-top: 60px;
|
|
137
|
+
margin-top: 60px !important;
|
|
134
138
|
}
|
|
135
139
|
}
|
|
136
140
|
</style>
|