Fixes Lint error.

This commit is contained in:
Zachary Baird
2023-04-12 10:19:46 -04:00
parent 4336aeb0ad
commit 08f284ce29

View File

@@ -22,10 +22,13 @@
</div>
</template>
<script>
<script setup>
import { XIcon } from '@/components'
</script>
<script>
import { defineComponent } from 'vue'
export default {
export default defineComponent({
props: {
header: {
type: String,
@@ -49,7 +52,7 @@ export default {
this.shown = false
},
},
}
})
</script>
<style lang="scss" scoped>