Open LewsTherinTelescope opened 1 year ago
If an array is passed, it will join the values together with a space, for compatibility with the class attribute. For example, class={['class1', 'class2', 'class3']} will now become class="class1 class2 class3".
class
class={['class1', 'class2', 'class3']}
class="class1 class2 class3"
If an array is passed, it will join the values together with a space, for compatibility with the
class
attribute. For example,class={['class1', 'class2', 'class3']}
will now becomeclass="class1 class2 class3"
.