Explorar o código

chore: use const instead of let (#437)

ztplz %!s(int64=6) %!d(string=hai) anos
pai
achega
bc053f05cd
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      packages/vue/__tests__/index.spec.ts

+ 1 - 1
packages/vue/__tests__/index.spec.ts

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