Showing
1 changed file
with
3 additions
and
2 deletions
... | ... | @@ -78,9 +78,10 @@ |
78 | 78 | </template> |
79 | 79 | |
80 | 80 | <script lang="ts"> |
81 | - export default { | |
81 | + import { defineComponent } from 'vue'; | |
82 | + export default defineComponent({ | |
82 | 83 | inheritAttrs: false, |
83 | - }; | |
84 | + }); | |
84 | 85 | </script> |
85 | 86 | <script lang="ts" setup> |
86 | 87 | import { ref, onMounted, nextTick, unref, computed, provide } from 'vue'; | ... | ... |