Merge pull request 'client: refactor info.vue to composition api' (#131) from refactor/client-info.vue into main

Reviewed-on: FoundKeyGang/FoundKey#131
This commit is contained in:
Norm 2022-09-14 04:34:02 +00:00
commit 63f47ada04

View file

@ -6,21 +6,11 @@
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
props: {
warn: {
type: Boolean,
required: false,
default: false,
},
},
data() {
return {
};
},
<script lang="ts" setup>
withDefaults(defineProps<{
warn?: boolean;
}>(), {
warn: false,
});
</script>