UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

27 lines (26 loc) 787 B
"use strict"; Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }); require("../../../utils/config.js"); require("vue"); const typescript = require("../../../utils/typescript.js"); require("@vueuse/core"); const textareaProps = { modelValue: String, placeholder: String, maxlength: Number, autoFocus: { type: Boolean, default: false }, disabled: Boolean, // autoHeight: Boolean, //autoHeight发现隐藏bug,暂停使用 rows: Number }; const textareaEmits = { ["update:modelValue"]: (value) => typescript.isString(value), change: (value) => typescript.isString(value), blur: (evt) => evt instanceof FocusEvent, focus: (evt) => evt instanceof FocusEvent }; exports.textareaEmits = textareaEmits; exports.textareaProps = textareaProps;