refactor(compiler-sfc): refSugar -> refTransform, export shouldTransformRef

This commit is contained in:
Evan You
2021-08-23 12:19:41 -04:00
parent 986681568f
commit 0805abe573
2 changed files with 12 additions and 7 deletions

View File

@@ -4,8 +4,9 @@ export { compileTemplate } from './compileTemplate'
export { compileStyle, compileStyleAsync } from './compileStyle'
export { compileScript } from './compileScript'
export { rewriteDefault } from './rewriteDefault'
export { generateCodeFrame, walkIdentifiers } from '@vue/compiler-core'
export { generateCodeFrame } from '@vue/compiler-core'
export {
shouldTransform as shouldTransformRef,
transform as transformRef,
transformAST as transformRefAST
} from '@vue/ref-transform'