Vue3 使用 Element Plus 插入图片:script setup 代码示例
<template>
<div>
<img :src="imageUrl" alt="image">
</div>
</template>
<script setup>
import { ref } from 'vue';
const imageUrl = ref('https://via.placeholder.com/150');
</script>
原文地址: https://www.cveoy.top/t/topic/mC0V 著作权归作者所有。请勿转载和采集!