Update VerticalDoc.vue

Fixed import ref from vue and not vuetest
This commit is contained in:
Colin Mallon 2023-10-25 15:55:12 +01:00 committed by GitHub
parent 4d0b3645c8
commit 0262f238c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,7 +54,7 @@ export default {
</template>
<script setup>
import { ref } from "vuetest";
import { ref } from "vue";
const value = ref(50);
<\/script>