[Vuejs]-How can i hard code my data from realtime database?

0👍

Your isue is not with RT-db but with Vue i guess;

If you want to build HTML in the JS section (as you do by pushing html tags inside an array), you should use the v-html directive instead of the interpolation.

Something like that

<div v-for="(option, i) in reserveringen" :key="i" v-html="reserveringen[i]">
</div>

Leave a comment