-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartial.js
44 lines (37 loc) · 969 Bytes
/
partial.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
var _ = require('../util')
var templateParser = require('../parsers/template')
var vIf = require('./if')
module.exports = {
isLiteral: true,
// same logic reuse from v-if
compile: vIf.compile,
teardown: vIf.teardown,
bind: function () {
var el = this.el
this.start = document.createComment('v-partial-start')
this.end = document.createComment('v-partial-end')
if (el.nodeType !== 8) {
el.innerHTML = ''
}
if (el.tagName === 'TEMPLATE' || el.nodeType === 8) {
_.replace(el, this.end)
} else {
el.appendChild(this.end)
}
_.before(this.start, this.end)
if (!this._isDynamicLiteral) {
this.insert(this.expression)
}
},
update: function (id) {
this.teardown()
this.insert(id)
},
insert: function (id) {
var partial = this.vm.$options.partials[id]
_.assertAsset(partial, 'partial', id)
if (partial) {
this.compile(templateParser.parse(partial))
}
}
}