mirror of
https://github.com/CorentinTh/it-tools.git
synced 2024-12-27 02:04:05 +08:00
13 lines
286 B
Perl
13 lines
286 B
Perl
---
|
|
to: src/ui/<%= h.changeCase.param(name) %>/<%= h.changeCase.param(name) %>.vue
|
|
---
|
|
<script lang="ts" setup>
|
|
const props = withDefaults(defineProps<{ prop?: string }>(), { prop: '' });
|
|
const { prop } = toRefs(props);
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
{{ prop }}
|
|
</div>
|
|
</template>
|