|
@@ -48,7 +48,7 @@ describe('compiler + runtime integration', () => {
|
|
|
|
|
|
|
|
it('should support using element innerHTML as template', () => {
|
|
it('should support using element innerHTML as template', () => {
|
|
|
const app = createApp()
|
|
const app = createApp()
|
|
|
- let container = document.createElement('div')
|
|
|
|
|
|
|
+ const container = document.createElement('div')
|
|
|
container.innerHTML = '{{msg}}'
|
|
container.innerHTML = '{{msg}}'
|
|
|
const App = {
|
|
const App = {
|
|
|
data: {
|
|
data: {
|