Client - use <script setup> in components

This commit is contained in:
Sam
2021-11-10 21:19:27 +01:00
parent 857c0ecd2d
commit 1bede62d80
126 changed files with 2133 additions and 3207 deletions

View File

@ -4,15 +4,6 @@
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
<script setup lang="ts">
import NotFound from '@/components/Common/NotFound.vue'
export default defineComponent({
name: 'NotFoundView',
components: {
NotFound,
},
})
</script>