chore: temporary workaround for debug

pull/353/head
Eduardo San Martin Morote 4 years ago
parent 1bb4124829
commit fee118d130

@ -1,8 +1,9 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, watch } from 'vue' import { ref, watch, reactive } from 'vue'
import { useData } from '../data' import { useData } from '../data'
const data = useData() // FIXME: remove reactive in next vue version
const data = reactive(useData())
const el = ref<HTMLElement | null>(null) const el = ref<HTMLElement | null>(null)
const open = ref(false) const open = ref(false)

Loading…
Cancel
Save