如何正确(语法)写这行Vue

问题描述 投票:-1回答:1

此行Vue的正确语法是什么?

<iframe src="/'product.id'/file.php' " frameborder="0"></iframe>

该行的形式:

<iframe src="/5/file.php">
vue.js syntax
1个回答
0
投票

您可以这样操作:

<iframe :src="`/${product.id}/file.php`" frameborder="0"></iframe>
© www.soinside.com 2019 - 2024. All rights reserved.