This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
full.vue
61 lines (60 loc) · 1.41 KB
/
full.vue
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<template>
<div>
<div>full example</div>
<tags-input
:tags="renderTags(tags)"
@tags-change="handleChange"
@focus="handleFocus"
@blur="handleBlur"
></tags-input>
</div>
</template>
<script>
export default {
data() {
return {
incrementId: 4,
tags: [
{id: 0, name: 'Tom', age: 16},
{id: 1, name: 'Lucy', age: 16},
{id: 2, name: 'Jim', age: 22},
{id: 3, name: 'May', age: 18},
],
}
},
methods: {
handleChange(index, text) {
if (text) {
let tag = this.formatNewTagInsert(text)
tag && this.dedupe(tag) && this.tags.splice(index, 0, tag)
} else {
this.tags.splice(index, 1)
}
},
handleFocus(index) {
console.log(`input actived in the index ${index}`)
},
handleBlur(index) {
console.log(`input deactived in the index ${index}`)
},
formatNewTagInsert(text) {
let id = this.incrementId++
let [name, age] = text.split(',')
return (name && age) ? {id, name, age: parseInt(age)} : false
},
renderTags(tags) {
return tags.map(({name, age}) => ({
text: `${name}, ${age} years old`,
invalid: Number.isNaN(age),
readOnly: age < 18
}))
},
dedupe(newTag) {
return !this.tags.some(({name}) => name === newTag.name)
}
},
components: {
'tags-input': require('../src/input.vue')
}
}
</script>