Skip to content
Snippets Groups Projects
Commit 0b99ffa8 authored by syuilo's avatar syuilo
Browse files

refactor(client): use setup syntax

parent d4e284c8
No related branches found
No related tags found
No related merge requests found
......@@ -6,23 +6,12 @@
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import * as os from '@/os';
<script lang="ts" setup>
import { } from 'vue';
export default defineComponent({
props: {
warn: {
type: Boolean,
required: false,
default: false
},
},
data() {
return {
};
}
});
const props = defineProps<{
warn?: boolean;
}>();
</script>
<style lang="scss" scoped>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment