@simsustech/quasar-components 0.10.3 → 0.10.4
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.
- package/CHANGELOG.md +6 -0
- package/dist/form.js +6 -0
- package/package.json +1 -1
- package/src/ui/form/EmailInput.vue +6 -0
package/CHANGELOG.md
CHANGED
package/dist/form.js
CHANGED
|
@@ -701,6 +701,12 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
701
701
|
}, null, 8, ["placeholder", "model-value"]),
|
|
702
702
|
createVNode(unref(QEditor), {
|
|
703
703
|
"model-value": _ctx.body,
|
|
704
|
+
toolbar: [
|
|
705
|
+
["left", "center", "right", "justify"],
|
|
706
|
+
["bold", "italic", "underline", "strike"],
|
|
707
|
+
["undo", "redo"],
|
|
708
|
+
["link"]
|
|
709
|
+
],
|
|
704
710
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => emit("update:body", $event))
|
|
705
711
|
}, null, 8, ["model-value"])
|
|
706
712
|
], 64);
|
package/package.json
CHANGED
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
/>
|
|
9
9
|
<q-editor
|
|
10
10
|
:model-value="body"
|
|
11
|
+
:toolbar="[
|
|
12
|
+
['left', 'center', 'right', 'justify'],
|
|
13
|
+
['bold', 'italic', 'underline', 'strike'],
|
|
14
|
+
['undo', 'redo'],
|
|
15
|
+
['link']
|
|
16
|
+
]"
|
|
11
17
|
@update:model-value="($event) => emit('update:body', $event)"
|
|
12
18
|
/>
|
|
13
19
|
</template>
|