Skip to content

Commit 0664cb0

Browse files
xmakinaposva
andauthored
fix(v-pre): do not alter attributes (#10088)
* fix(v-pre): do not alter attributes close #10087 * fix(v-pre): do not alter attributes remove component and replace option from unit test * refactor: use or * perf: check boolean before index Co-authored-by: Eduardo San Martin Morote <[email protected]>
1 parent cd57393 commit 0664cb0

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

src/platforms/web/runtime/modules/attrs.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {
3939
cur = attrs[key]
4040
old = oldAttrs[key]
4141
if (old !== cur) {
42-
setAttr(elm, key, cur)
42+
setAttr(elm, key, cur, vnode.data.pre)
4343
}
4444
}
4545
// #4391: in IE9, setting type can reset value for input[type=radio]
@@ -59,8 +59,8 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {
5959
}
6060
}
6161

62-
function setAttr (el: Element, key: string, value: any) {
63-
if (el.tagName.indexOf('-') > -1) {
62+
function setAttr (el: Element, key: string, value: any, isInPre: any) {
63+
if (isInPre || el.tagName.indexOf('-') > -1) {
6464
baseSetAttr(el, key, value)
6565
} else if (isBooleanAttr(key)) {
6666
// set attribute for blank value

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

+9
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,13 @@ describe('Directive v-pre', function () {
4242
vm.$mount()
4343
expect(vm.$el.firstChild.tagName).toBe('VTEST')
4444
})
45+
46+
// #10087
47+
it('should not compile attributes', function () {
48+
const vm = new Vue({
49+
template: '<div v-pre><p open="hello">A Test</p></div>'
50+
})
51+
vm.$mount()
52+
expect(vm.$el.firstChild.getAttribute('open')).toBe('hello')
53+
})
4554
})

0 commit comments

Comments
 (0)