Skip to content

Commit 3b38c9a

Browse files
committed
feat(sfc): remove experimental status for sfc style v-bind
1 parent 51ee84f commit 3b38c9a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/compiler-sfc/src/parse.ts

-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { RawSourceMap, SourceMapGenerator } from 'source-map'
1111
import { TemplateCompiler } from './compileTemplate'
1212
import { Statement } from '@babel/types'
1313
import { parseCssVars } from './cssVars'
14-
import { warnExperimental } from './warn'
1514
import { createCache } from './cache'
1615

1716
export interface SFCParseOptions {
@@ -264,9 +263,6 @@ export function parse(
264263

265264
// parse CSS vars
266265
descriptor.cssVars = parseCssVars(descriptor)
267-
if (descriptor.cssVars.length) {
268-
warnExperimental(`v-bind() CSS variable injection`, 231)
269-
}
270266

271267
// check if the SFC uses :slotted
272268
const slottedRE = /(?:::v-|:)slotted\(/

0 commit comments

Comments
 (0)