Files
SaaS-lib/lib/component/form/input/textarea.vue

12 lines
211 B
Vue
Raw Normal View History

2024-05-15 17:29:42 +08:00
<template>
<a-textarea />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: 'NsTextarea',
});
</script>
<style lang="less" scoped></style>