kintone-vue-component logo kintone-vue-component

k-field-group コンポーネントはフィールドをグループ化するのに使用されます。

デモ

使い方

<template>
  <k-field-group name="Group" v-model="toggle">
    <k-label text="ラベル" />
    <k-text v-model="text" />
  </k-field-group>
</template>
<script>
export default {
  data() {
    return {
      toggle: false,
      text: ''
    };
  }
};
</script>

Attribute

Name Description Type Required
name フィールドグループの名前.
デフォルト値:’’
String No
value フィールドグループを表示するかどうか.
デフォルト値: false
Boolean No

Event

Name Description
input ユーザーの操作によって開閉ボタンが押されたときに発生する。