脚本中这一行 Vue 的正确语法是什么:
export default {
metaInfo: {
title: "{product.name} wallpaper",
这条线出现在表格中:
title: "Space wallpaper",
product.name
我在api中得到它:
mounted()
{
let vm = this
vm.getProducts();
},
methods: {
getProducts() {
let vm = this
axios.get('/api/products')
.then(function(response) {
vm.products = response.data.data
})