compositioN: error and valuepair

This commit is contained in:
Matthias 2022-04-17 10:02:29 +02:00
parent fdfeed35af
commit be80da4f06
2 changed files with 6 additions and 4 deletions

View File

@ -8,9 +8,9 @@
</template>
<script lang="ts">
import Vue from 'vue';
import { defineComponent } from '@vue/composition-api';
export default Vue.extend({
export default defineComponent({
name: 'ValuePair',
props: {
description: {

View File

@ -10,9 +10,11 @@
</template>
<script lang="ts">
import Vue from 'vue';
import { defineComponent } from '@vue/composition-api';
export default Vue.extend({});
export default defineComponent({
name: 'Error404',
});
</script>
<style scoped></style>