Files
data-fetch-plugin/vue-project/my-kintone-plugin/src/components/basic/PluginLabel.vue
2025-01-18 00:24:34 +08:00

12 lines
210 B
Vue

<template>
<div class="kintoneplugin-label">{{ label }}</div>
</template>
<script setup lang="ts">
import { defineProps } from 'vue';
const props = defineProps<{
label: string;
}>();
</script>