client: refactor info.vue to composition api

This commit is contained in:
Norm 2022-09-08 04:10:28 -04:00
parent 058d414fff
commit c469a17623
Signed by untrusted user: norm
GPG key ID: 7123E30E441E80DE

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>