}
}
+export function hasDynamicKeyVBind(node: ElementNode): boolean {
+ return node.props.some(
+ p =>
+ p.type === NodeTypes.DIRECTIVE &&
+ p.name === 'bind' &&
+ (!p.arg || // v-bind="obj"
+ p.arg.type !== NodeTypes.SIMPLE_EXPRESSION || // v-bind:[_ctx.foo]
+ !p.arg.isStatic) // v-bind:[foo]
+ )
+}
+
export function createBlockExpression(
blockExp: BlockCodegenNode,
context: TransformContext
// Jest Snapshot v1, https://goo.gl/fbAQLP
+exports[`compiler: transform v-model input w/ dynamic v-bind 1`] = `
+"const _Vue = Vue
+
+return function render() {
+ with (this) {
+ const { vModelDynamic: _vModelDynamic, mergeProps: _mergeProps, createVNode: _createVNode, withDirectives: _withDirectives, createBlock: _createBlock, openBlock: _openBlock } = _Vue
+
+ return (_openBlock(), _withDirectives(_createBlock(\\"input\\", _mergeProps(obj, {
+ modelValue: model,
+ \\"onUpdate:modelValue\\": $event => (model = $event)
+ }), null, 16 /* FULL_PROPS */, [\\"modelValue\\", \\"onUpdate:modelValue\\"]), [
+ [_vModelDynamic, model]
+ ]))
+ }
+}"
+`;
+
+exports[`compiler: transform v-model input w/ dynamic v-bind 2`] = `
+"const _Vue = Vue
+
+return function render() {
+ with (this) {
+ const { vModelDynamic: _vModelDynamic, createVNode: _createVNode, withDirectives: _withDirectives, resolveDirective: _resolveDirective, createBlock: _createBlock, openBlock: _openBlock } = _Vue
+
+ const _directive_bind = _resolveDirective(\\"bind\\")
+
+ return (_openBlock(), _withDirectives(_createBlock(\\"input\\", {
+ modelValue: model,
+ \\"onUpdate:modelValue\\": $event => (model = $event)
+ }, null, 8 /* PROPS */, [\\"modelValue\\", \\"onUpdate:modelValue\\"]), [
+ [_directive_bind, val, key],
+ [_vModelDynamic, model]
+ ]))
+ }
+}"
+`;
+
exports[`compiler: transform v-model modifiers .lazy 1`] = `
"const _Vue = Vue
expect(generate(root).code).toMatchSnapshot()
})
+ test('input w/ dynamic v-bind', () => {
+ const root = transformWithModel('<input v-bind="obj" v-model="model" />')
+
+ expect(root.helpers).toContain(V_MODEL_DYNAMIC)
+ expect(generate(root).code).toMatchSnapshot()
+
+ const root2 = transformWithModel(
+ '<input v-bind:[key]="val" v-model="model" />'
+ )
+ expect(root2.helpers).toContain(V_MODEL_DYNAMIC)
+ expect(generate(root2).code).toMatchSnapshot()
+ })
+
test('simple expression for select', () => {
const root = transformWithModel('<select v-model="model" />')
DirectiveTransform,
ElementTypes,
findProp,
- NodeTypes
+ NodeTypes,
+ hasDynamicKeyVBind
} from '@vue/compiler-core'
import { createDOMCompilerError, DOMErrorCodes } from '../errors'
import {
break
}
}
+ } else if (hasDynamicKeyVBind(node)) {
+ // element has bindings with dynamic keys, which can possibly contain
+ // "type".
+ directiveToUse = V_MODEL_DYNAMIC
} else {
// text type
__DEV__ && checkDuplicatedValue()
JSChildNode,
ArrayExpression,
createAssignmentExpression,
- TextNode
+ TextNode,
+ hasDynamicKeyVBind
} from '@vue/compiler-dom'
import { escapeHtml, isBooleanAttr, isSSRSafeAttrName } from '@vue/shared'
import { createSSRCompilerError, SSRErrorCodes } from '../errors'
// v-bind="obj" or v-bind:[key] can potentially overwrite other static
// attrs and can affect final rendering result, so when they are present
// we need to bail out to full `renderAttrs`
- const hasDynamicVBind = node.props.some(
- p =>
- p.type === NodeTypes.DIRECTIVE &&
- p.name === 'bind' &&
- (!p.arg || // v-bind="obj"
- p.arg.type !== NodeTypes.SIMPLE_EXPRESSION || // v-bind:[_ctx.foo]
- !p.arg.isStatic) // v-bind:[foo]
- )
+ const hasDynamicVBind = hasDynamicKeyVBind(node)
if (hasDynamicVBind) {
const { props } = buildProps(node, context, node.props, true /* ssr */)
if (props) {
checkDuplicatedValue()
node.children = [createInterpolation(model, model.loc)]
} else if (node.tag === 'select') {
- // TODO
+ // NOOP
+ // select relies on client-side directive to set initial selected state.
} else {
context.onError(
createDOMCompilerError(