fix: fix icon

This commit is contained in:
Justineo
2021-09-15 20:23:08 +08:00
parent 4b5e3bef18
commit cafc41321d
2 changed files with 8 additions and 6 deletions

View File

@@ -25,7 +25,9 @@ export default {
},
data () {
return {
names: Object.keys(Icon.icons).sort()
names: Object.keys(Icon.icons)
.filter(name => !name.startsWith('one-demo-') && Icon.icons[name])
.sort()
}
}
}