123456789101112131415161718192021 |
- <template>
- <div class="product-des">
- <el-input
- v-model="description"
- clearable
- placeholder="第二步:输入产品的描述,例如功能和使用场景"
- />
- </div>
- </template>
- <script lang="ts" setup>
- import { ref } from 'vue';
- const description = ref<string>('');
- defineExpose({
- getDescription: () => description.value
- });
- </script>
- <style lang="scss" scoped></style>
|