File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -127,11 +127,11 @@ export default {
127
127
} else {
128
128
nestedString += htmlElementMap[child .text ][0 ];
129
129
if (child .class !== " " ) {
130
- nestedString += " " + " class = " + ` "${ child .class } "` ;
130
+ nestedString += " " + " class= " + ` "${ child .class } "` ;
131
131
}
132
132
if (child .binding !== " " ) {
133
133
if (child .text !== ' img' || child .text !== ' link' ) {
134
- nestedString += ` v-model = "${ child .binding } "`
134
+ nestedString += ` v-model= "${ child .binding } "`
135
135
136
136
}
137
137
}
@@ -164,11 +164,11 @@ export default {
164
164
outputStr += htmlElementMap[el .text ][0 ]
165
165
// if conditional to check class
166
166
if (el .class !== " " ) {
167
- outputStr += " " + " class = " + ` "${ el .class } "` ;
167
+ outputStr += " " + " class= " + ` "${ el .class } "` ;
168
168
}
169
169
170
170
if (el .binding !== " " ) {
171
- outputStr += ` v-model = "${ el .binding } "`
171
+ outputStr += ` v-model= "${ el .binding } "`
172
172
}
173
173
// add an extra slash at the end for child Components and single tags
174
174
if (childComponents .includes (el .text ) || el .text === " img" || el .text === " input" || el .text === " link" ){
You can’t perform that action at this time.
0 commit comments