Skip to content

Commit 64f863b

Browse files
committed
feat: move v-bind.prop shorthand behind flag
1 parent 44a17ba commit 64f863b

File tree

4 files changed

+49
-40
lines changed

4 files changed

+49
-40
lines changed

scripts/feature-flags.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
module.exports = {
2-
NEW_SLOT_SYNTAX: true
2+
NEW_SLOT_SYNTAX: true,
3+
VBIND_PROP_SHORTHAND: false
34
}

src/compiler/parser/index.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ import {
2222
} from '../helpers'
2323

2424
export const onRE = /^@|^v-on:/
25-
export const dirRE = /^v-|^@|^:|^\./
25+
export const dirRE = process.env.VBIND_PROP_SHORTHAND
26+
? /^v-|^@|^:|^\./
27+
: /^v-|^@|^:/
2628
export const forAliasRE = /([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/
2729
export const forIteratorRE = /,([^,\}\]]*)(?:,([^,\}\]]*))?$/
2830
const stripParensRE = /^\(|\)$/g
@@ -753,7 +755,7 @@ function processAttrs (el) {
753755
// modifiers
754756
modifiers = parseModifiers(name.replace(dirRE, ''))
755757
// support .foo shorthand syntax for the .prop modifier
756-
if (propBindRE.test(name)) {
758+
if (process.env.VBIND_PROP_SHORTHAND && propBindRE.test(name)) {
757759
(modifiers || (modifiers = {})).prop = true
758760
name = `.` + name.slice(1).replace(modifierRE, '')
759761
} else if (modifiers) {

test/unit/features/directives/bind.spec.js

+29-25
Original file line numberDiff line numberDiff line change
@@ -133,17 +133,19 @@ describe('Directive v-bind', () => {
133133
expect(vm.$el.getAttribute('id')).toBe(null)
134134
})
135135

136-
it('.prop modifier shorthand', () => {
137-
const vm = new Vue({
138-
template: '<div><span .text-content="foo"></span><span .inner-html="bar"></span></div>',
139-
data: {
140-
foo: 'hello',
141-
bar: '<span>qux</span>'
142-
}
143-
}).$mount()
144-
expect(vm.$el.children[0].textContent).toBe('hello')
145-
expect(vm.$el.children[1].innerHTML).toBe('<span>qux</span>')
146-
})
136+
if (process.env.VBIND_PROP_SHORTHAND) {
137+
it('.prop modifier shorthand', () => {
138+
const vm = new Vue({
139+
template: '<div><span .text-content="foo"></span><span .inner-html="bar"></span></div>',
140+
data: {
141+
foo: 'hello',
142+
bar: '<span>qux</span>'
143+
}
144+
}).$mount()
145+
expect(vm.$el.children[0].textContent).toBe('hello')
146+
expect(vm.$el.children[1].innerHTML).toBe('<span>qux</span>')
147+
})
148+
}
147149

148150
it('.camel modifier', () => {
149151
const vm = new Vue({
@@ -529,20 +531,22 @@ describe('Directive v-bind', () => {
529531
}).then(done)
530532
})
531533

532-
it('.prop shorthand', done => {
533-
const vm = new Vue({
534-
template: `<div .[key]="value"></div>`,
535-
data: {
536-
key: 'id',
537-
value: 'hello'
538-
}
539-
}).$mount()
540-
expect(vm.$el.id).toBe('hello')
541-
vm.key = 'textContent'
542-
waitForUpdate(() => {
543-
expect(vm.$el.textContent).toBe('hello')
544-
}).then(done)
545-
})
534+
if (process.env.VBIND_PROP_SHORTHAND) {
535+
it('.prop shorthand', done => {
536+
const vm = new Vue({
537+
template: `<div .[key]="value"></div>`,
538+
data: {
539+
key: 'id',
540+
value: 'hello'
541+
}
542+
}).$mount()
543+
expect(vm.$el.id).toBe('hello')
544+
vm.key = 'textContent'
545+
waitForUpdate(() => {
546+
expect(vm.$el.textContent).toBe('hello')
547+
}).then(done)
548+
})
549+
}
546550

547551
it('handle class and style', () => {
548552
const vm = new Vue({

test/unit/modules/compiler/parser.spec.js

+14-12
Original file line numberDiff line numberDiff line change
@@ -535,20 +535,22 @@ describe('parser', () => {
535535
expect('The value for a v-bind expression cannot be empty. Found in "v-bind:empty-msg"').toHaveBeenWarned()
536536
})
537537

538-
it('v-bind.prop shorthand syntax', () => {
539-
const ast = parse('<div .id="foo"></div>', baseOptions)
540-
expect(ast.props).toEqual([{ name: 'id', value: 'foo', dynamic: false }])
541-
})
538+
if (process.env.VBIND_PROP_SHORTHAND) {
539+
it('v-bind.prop shorthand syntax', () => {
540+
const ast = parse('<div .id="foo"></div>', baseOptions)
541+
expect(ast.props).toEqual([{ name: 'id', value: 'foo', dynamic: false }])
542+
})
542543

543-
it('v-bind.prop shorthand syntax w/ modifiers', () => {
544-
const ast = parse('<div .id.mod="foo"></div>', baseOptions)
545-
expect(ast.props).toEqual([{ name: 'id', value: 'foo', dynamic: false }])
546-
})
544+
it('v-bind.prop shorthand syntax w/ modifiers', () => {
545+
const ast = parse('<div .id.mod="foo"></div>', baseOptions)
546+
expect(ast.props).toEqual([{ name: 'id', value: 'foo', dynamic: false }])
547+
})
547548

548-
it('v-bind dynamic argument', () => {
549-
const ast = parse('<div .[id]="foo"></div>', baseOptions)
550-
expect(ast.props).toEqual([{ name: 'id', value: 'foo', dynamic: true }])
551-
})
549+
it('v-bind.prop shorthand dynamic argument', () => {
550+
const ast = parse('<div .[id]="foo"></div>', baseOptions)
551+
expect(ast.props).toEqual([{ name: 'id', value: 'foo', dynamic: true }])
552+
})
553+
}
552554

553555
// This only works for string templates.
554556
// In-DOM templates will be malformed before Vue can parse it.

0 commit comments

Comments
 (0)