fix tests

This commit is contained in:
Andreani Jean
2023-06-15 11:20:59 +02:00
parent f72d1f0177
commit 39d2839bb4
13 changed files with 1337 additions and 10715 deletions

View File

@@ -15,7 +15,8 @@
<script lang="ts" setup>
import { ref, watchEffect } from 'vue'
const emit = defineEmits()
import type { CheckboxInterface } from '@/views/interfaces/MySequenceView'
const emit = defineEmits<{ (e: 'trigger', value: CheckboxInterface): void }>()
const props = defineProps({
name: { type: String, default: null },
isChecked: { type: Boolean, default: false },