From 59393dd75766720330cb69e22086c97a392dbbe4 Mon Sep 17 00:00:00 2001 From: djy0 Date: Wed, 26 Feb 2020 23:13:07 +0800 Subject: [PATCH] fix(template-explorer): rename watch -> watchEffect (#780) --- packages/template-explorer/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/template-explorer/src/index.ts b/packages/template-explorer/src/index.ts index cf97e8e69f7..af90ce6c4b1 100644 --- a/packages/template-explorer/src/index.ts +++ b/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 any>(