mirror of https://github.com/vuejs/core.git
13 lines
317 B
TypeScript
13 lines
317 B
TypeScript
// This entry is the "full-build" that includes both the runtime
|
|
// and the compiler, and supports on-the-fly compilation of the template option.
|
|
import { initDev } from './dev'
|
|
|
|
if (__DEV__) {
|
|
initDev()
|
|
}
|
|
|
|
// TODO register compiler
|
|
|
|
export { compile } from '@vue/compiler-vapor'
|
|
export * from '@vue/runtime-vapor'
|