我想使用blade + vue编写ajax渲染新闻。
<div id="news">
<div class="l_news">
<div class="post" v-for="post in posts">
<div class="image" style="background: url({{ asset('images/car.jpg') }}) no-repeat center / cover">
<div class="title">@{{ post.title }}</div>
</div>
<div class="desc">@{{ post.desc }}</div>
</div>
</div>
</div>
我在渲染帖子图片方面遇到了一些问题。
但我无法使用
url({{ asset('@{{ post.image }}') }})
如何正确写作?
现在我正在使用:style =&#34;&#34;。
提前致谢!