I am having problem specifying multiple attributes in any class at all.
if I have a key:value like
{"class":"javascript handlebar-js"}
and use it like this <div class={{class}}><div>
it only spits out <div class="javascript"><div>
when I want <div class="javascript handlebar-js"><div>
Sometimes I have one class sometimes I have multiple classes Is there any other way to do this besides putting all classes inside an array and using a with + each statement to move through each class and cramping up my object with unnecessary arrays? Not that I am sure if using said method would work.
any help would be appreciated