We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fb5172 commit 91d29b1Copy full SHA for 91d29b1
lib/codegen/hotReload.js
@@ -22,9 +22,9 @@ if (module.hot) {
22
if (!module.hot.data) {
23
api.createRecord('${id}', component.options)
24
} else {
25
- api.${functional ? `rerender` : `reload`}('${id}', component.options)
+ api.${functional ? 'rerender' : 'reload'}('${id}', component.options)
26
}
27
- ${templateRequest ? genTemplateHotReloadCode(id, templateRequest) : ``}
+ ${templateRequest ? genTemplateHotReloadCode(id, templateRequest) : ''}
28
29
30
`.trim()
0 commit comments