Mentions légales du service

Skip to content
Snippets Groups Projects

Resolve "Quill editor & file input aren't updated visually on reorder"

2 files
+ 26
7
Compare changes
  • Side-by-side
  • Inline
Files
2
<script setup lang="ts">
<script setup lang="ts">
import { computed, onMounted, ref } from 'vue';
import { computed, onMounted, ref, watch } from 'vue';
import { projectService } from '@/src/shared/services';
import { projectService } from '@/src/shared/services';
const props = defineProps<{
const props = defineProps<{
@@ -44,6 +44,13 @@ onMounted(() => {
@@ -44,6 +44,13 @@ onMounted(() => {
url.value = props.inputValue;
url.value = props.inputValue;
});
});
 
watch(
 
() => props.inputValue,
 
() => {
 
url.value = props.inputValue;
 
}
 
);
 
</script>
</script>
<template>
<template>
Loading