I have a simple page where I display some data that are fetched from the server.
Template:
Order\'s customer name: {{ order.customer.name }}<
new Vue({ el: '#app', data: { data: {name: 'daniel'}, data2: {} } })
You need to render it conditionally. Since data from the backend is not accessible from the very beginning, you should add a condition to display element only when the data is ready. See example.
Order's customer name: