[Vuejs]-How to use vuejs data property as html attribute

0👍

If you want to use Vue data properties as HTML Attribute, just put a ":" in front of it.

<div :id="name_of_data_property">

Leave a comment