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