rich editing works
This commit is contained in:
@@ -1,38 +1,27 @@
|
||||
<script setup lang="ts">
|
||||
import { ref } from "vue";
|
||||
import { useQuasar } from "quasar";
|
||||
|
||||
const $q = useQuasar();
|
||||
const editor = ref("");
|
||||
const editMode = ref(false);
|
||||
|
||||
function edit() {
|
||||
editMode.value = !editMode.value;
|
||||
}
|
||||
const props = defineProps({
|
||||
statement: { type: String, required: true },
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
<q-dialog v-if="editMode" >
|
||||
<q-editor v-model="editor" min-height="5rem" />
|
||||
</q-dialog>
|
||||
|
||||
|
||||
<Draggable :grid="[25, 25]">
|
||||
<div style="display: flex">
|
||||
<q-card flat bordered>
|
||||
<q-card-section>
|
||||
<div class="row items-center no-wrap">
|
||||
<q-card-section v-html="editor" />
|
||||
<q-card-section v-html="props.statement" />
|
||||
<div class="col-auto">
|
||||
<q-btn color="grey-7" round flat icon="more_vert">
|
||||
<q-menu cover auto-close>
|
||||
<q-list>
|
||||
<q-item clickable>
|
||||
<q-item-section @click="edit">Edit</q-item-section>
|
||||
<q-item-section @click="() => $emit('edit')">Edit</q-item-section>
|
||||
</q-item>
|
||||
<q-item clickable>
|
||||
<q-item-section>Remove</q-item-section>
|
||||
<q-item-section @click="() => $emit('remove')">Remove</q-item-section>
|
||||
</q-item>
|
||||
</q-list>
|
||||
</q-menu>
|
||||
|
||||
Reference in New Issue
Block a user