0

我知道为了在本机反应中添加静态图像资源,图像必须是静态已知的。这是通过以下方式完成的:

var icon = this.props.active
  ? require('./my-icon-active.png')
  : require('./my-icon-inactive.png');
<Image source={icon} />;

在 vue native 中,就像在 react native 中一样,使用

<image
  :source="{require('./my-icon.png')}"
/>

将不起作用,因为静态图像不是静态已知的。如何使图像在 Vue Native 中静态已知?

4

1 回答 1

2

在 Vue-Native 中你需要这样写:

<image
:source="require('./my-icon.png')"
/>

放下{}中间""

于 2019-08-08T11:41:19.043 回答