@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
30 lines (29 loc) • 947 B
TypeScript
/**
* Button Edit 是允许在其编辑器内部嵌入按钮的文本输入框。开发者可以自定义输入框的按钮,以便于实现丰富的录入交互形式。
*
* @example
* ```vue
* <script setup lang="ts">
* import { ref } from 'vue';
*
* const text = ref('');
* </script>
* <template>
* <div class="my-2">
* <span>输入框文本: </span>
* <span>{{ text }}</span>
* </div>
* <f-button-edit v-model="text" :button-behavior="'Overlay'"></f-button-edit>
* </template>
* ```
*
* @public
*/
declare const _default: import("vue").DefineComponent<{
[x: string]: any;
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
[x: string]: any;
}> & Readonly<{}>, {
[x: string]: any;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;