关于uniapp中动态设置image的src不生效

场景:父组件传值到子组件

父组件:

	
	<template>
		<test-image :imageSrc="imageSrc">test-image>
	template>
	<script>
		export default {
			name: 'parentComponent',
			data () {
				return {
					// imageSrc: '@/static/xxx.png',	// 不生效
					// imageSrc: '~@/static/xxx.png',	// 不生效
					imageSrc: '/static/xxx.png'		// 有效
				}
			}
		}
	script>

子组件:

	
	<template>
		<image :src="imageSrc" mode="">image>
	template>
	<script>
		export default {
			name: 'testImage',
			props: {
				imageSrc:{
					type: String,
					default: ''
				}
			},
			data () {
				return {}
			}
		}
	script>

你可能感兴趣的:(vue.js,前端,javascript,uniapp)