Skip to content

Commit

Permalink
feat(sfc): remove experimental status for sfc style v-bind
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Jul 28, 2021
1 parent 51ee84f commit 3b38c9a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/compiler-sfc/src/parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { RawSourceMap, SourceMapGenerator } from 'source-map'
import { TemplateCompiler } from './compileTemplate'
import { Statement } from '@babel/types'
import { parseCssVars } from './cssVars'
import { warnExperimental } from './warn'
import { createCache } from './cache'

export interface SFCParseOptions {
Expand Down Expand Up @@ -264,9 +263,6 @@ export function parse(

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

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

0 comments on commit 3b38c9a

Please sign in to comment.