vaderjs 1.3.3-alpha-145 → 1.3.3-alpha-146
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/vader.js +5 -0
package/package.json
CHANGED
package/vader.js
CHANGED
|
@@ -434,6 +434,11 @@ function Compiler(func, file) {
|
|
|
434
434
|
isWithinComponent = true;
|
|
435
435
|
filteredProps.push(prop);
|
|
436
436
|
} else if (isWithinComponent && prop.includes('=')) {
|
|
437
|
+
if(prop.includes('${')){
|
|
438
|
+
prop = prop.replace('${', '`')
|
|
439
|
+
prop = prop.replace('}', '`')
|
|
440
|
+
console.log(prop)
|
|
441
|
+
}
|
|
437
442
|
if(prop.startsWith('={')){
|
|
438
443
|
prop = prop.replace('={', ':`')
|
|
439
444
|
prop.replace('} ', '`')
|