chore: use const instead of let (#437)
This commit is contained in:
parent
f178874ace
commit
bc053f05cd
@ -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: {
|
||||||
|
Loading…
Reference in New Issue
Block a user