We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51ee84f commit 3b38c9aCopy full SHA for 3b38c9a
packages/compiler-sfc/src/parse.ts
@@ -11,7 +11,6 @@ import { RawSourceMap, SourceMapGenerator } from 'source-map'
11
import { TemplateCompiler } from './compileTemplate'
12
import { Statement } from '@babel/types'
13
import { parseCssVars } from './cssVars'
14
-import { warnExperimental } from './warn'
15
import { createCache } from './cache'
16
17
export interface SFCParseOptions {
@@ -264,9 +263,6 @@ export function parse(
264
263
265
// parse CSS vars
266
descriptor.cssVars = parseCssVars(descriptor)
267
- if (descriptor.cssVars.length) {
268
- warnExperimental(`v-bind() CSS variable injection`, 231)
269
- }
270
271
// check if the SFC uses :slotted
272
const slottedRE = /(?:::v-|:)slotted\(/
0 commit comments