ProductDescription.vue 408 B

123456789101112131415161718192021
  1. <template>
  2. <div class="product-des">
  3. <el-input
  4. v-model="description"
  5. clearable
  6. placeholder="第二步:输入产品的描述,例如功能和使用场景"
  7. />
  8. </div>
  9. </template>
  10. <script lang="ts" setup>
  11. import { ref } from 'vue';
  12. const description = ref<string>('');
  13. defineExpose({
  14. getDescription: () => description.value
  15. });
  16. </script>
  17. <style lang="scss" scoped></style>