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

父组件:

	<!-- 父组件 parentComponent -->
	<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>

子组件:

	<!-- 子组件 testImage -->
	<template>
		<image :src="imageSrc" mode=""></image>
	</template>
	<script>
		export default {
			name: 'testImage',
			props: {
				imageSrc:{
					type: String,
					default: ''
				}
			},
			data () {
				return {}
			}
		}
	</script>
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐