12 lines
210 B
Vue
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>
|