refactor(client): use setup syntax

This commit is contained in:
syuilo 2022-09-06 18:09:17 +09:00
parent d4e284c859
commit 0b99ffa8f9
1 changed files with 5 additions and 16 deletions

View File

@ -6,23 +6,12 @@
</div> </div>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { defineComponent } from 'vue'; import { } from 'vue';
import * as os from '@/os';
export default defineComponent({ const props = defineProps<{
props: { warn?: boolean;
warn: { }>();
type: Boolean,
required: false,
default: false
},
},
data() {
return {
};
}
});
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>