chore: use const instead of let (#437)

This commit is contained in:
ztplz 2019-11-08 12:35:22 +08:00 committed by Evan You
parent f178874ace
commit bc053f05cd

View File

@ -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: {