Basit bir Vue örneğim var ve jsonu HTTP isteği olmadan arka plandan vue geçmek istiyorum çünkü her zaman aynıdır. DOM yılındaVeriler (json) vue örneğine geçirme
Ben sahne ile bunu denedim ama çalışmıyor ... <div id="my-component" prices="[object Object]">
Vue ayıklama aracı boş bir dize olarak bana resim göstermek ve konsolda gibi görünüyor oluyor undefined
<div id="my-component" :prices="{{ $prices }}">
</div>
<script>
new Vue({
el: '#my-component',
props: ['prices'],
mounted: function() {
console.log(this.image);
},
});
</script>
Burada $prices
json kodlu dizi.
parlak, aradığım şey bu! – xAoc