Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
- src - assets - img.png - components - Component.vue - App.vue
<template> <img src="../assets/img.png" </template
<template> <img src=". /assets/img.png"> </template>
Component.vue <script setup lang="ts"> const props = defineProps<{ imgSrc: string }>() </script> <template> <img :src="props.imgSrc" /> </template
<template> <component imgSrc="./assets/img.png" /> </template