Browse Source

fix(template-explorer): rename watch -> watchEffect (#780)

djy0 6 năm trước cách đây
mục cha
commit
59393dd757
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      packages/template-explorer/src/index.ts

+ 2 - 2
packages/template-explorer/src/index.ts

@@ -2,7 +2,7 @@ import * as m from 'monaco-editor'
 import { compile, CompilerError, CompilerOptions } from '@vue/compiler-dom'
 import { compile as ssrCompile } from '@vue/compiler-ssr'
 import { compilerOptions, initOptions, ssrMode } from './options'
-import { watch } from '@vue/runtime-dom'
+import { watchEffect } from '@vue/runtime-dom'
 import { SourceMapConsumer } from 'source-map'
 
 declare global {
@@ -221,7 +221,7 @@ window.init = () => {
   )
 
   initOptions()
-  watch(reCompile)
+  watchEffect(reCompile)
 }
 
 function debounce<T extends (...args: any[]) => any>(