Migrate code to composition api.

This commit is contained in:
Kavin
2026-03-27 00:41:48 +05:30
parent 2448b8aa1d
commit fa5bbbd267
50 changed files with 4506 additions and 4418 deletions

View File

@@ -7,15 +7,13 @@
</div>
</template>
<script>
export default {
props: {
showContent: {
type: Boolean,
required: true,
},
<script setup>
defineProps({
showContent: {
type: Boolean,
required: true,
},
};
});
</script>
<style>