``` javascript var child = { template: '<div class="one"></div>' } var parent = { template: '<child class="pre-{{name}}"></child>', data() { return {name: "two"} }, components: {child} } ``` It compiles to `<div class="one pre-undefined"></div>`. The bug won't appear if there is no class attribute on the root of child component.