@mixd-id/web-scaffold 0.1.230406336 → 0.1.230406337
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -137,8 +137,6 @@ export default{
|
|
|
137
137
|
addItem(item){
|
|
138
138
|
this.restoreSelection()
|
|
139
139
|
|
|
140
|
-
console.log(item)
|
|
141
|
-
|
|
142
140
|
const el = document.createElement('span')
|
|
143
141
|
el.setAttribute('contenteditable', 'false')
|
|
144
142
|
el.setAttribute('class', this.$style.tag)
|
|
@@ -178,7 +176,6 @@ export default{
|
|
|
178
176
|
onInput(){
|
|
179
177
|
|
|
180
178
|
const arr = []
|
|
181
|
-
console.log(this.$refs.html.childNodes)
|
|
182
179
|
for(let i = 0 ; i < this.$refs.html.childNodes.length ; i++){
|
|
183
180
|
if(this.$refs.html.childNodes[i].nodeType === 3){
|
|
184
181
|
arr.push(this.$refs.html.childNodes[i].nodeValue)
|