kytos-ng / ui

Kytos Admin UI
MIT License
0 stars 3 forks source link

Replace UI v-bind with shorthand #67

Open rmotitsuki opened 3 months ago

rmotitsuki commented 3 months ago

v-bind directive can be replaced by a shorthand with ":" character.

v-bind documentation

Example:

<!-- bind an attribute -->
<img v-bind:src="imageSrc" />

<!-- shorthand -->
<img :src="imageSrc" />