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> </div>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { defineComponent } from 'vue'; withDefaults(defineProps<{
warn?: boolean;
export default defineComponent({ }>(), {
props: { warn: false,
warn: {
type: Boolean,
required: false,
default: false,
},
},
data() {
return {
};
},
}); });
</script> </script>