icon支持拓展
parent
538f22f453
commit
fff7dc1bb3
|
@ -96,6 +96,11 @@
|
||||||
<script>
|
<script>
|
||||||
import SVG_DICT from './svg'
|
import SVG_DICT from './svg'
|
||||||
|
|
||||||
|
let dict = SVG_DICT
|
||||||
|
if (window.EXT_SVG_DICT) {
|
||||||
|
Object.assign(dict, EXT_SVG_DICT)
|
||||||
|
}
|
||||||
|
|
||||||
export default class Icon {
|
export default class Icon {
|
||||||
props = {
|
props = {
|
||||||
is: ''
|
is: ''
|
||||||
|
@ -121,7 +126,7 @@ export default class Icon {
|
||||||
// 绘制图标
|
// 绘制图标
|
||||||
drawPath() {
|
drawPath() {
|
||||||
var { is } = this.props
|
var { is } = this.props
|
||||||
var path = SVG_DICT[is]
|
var path = dict[is]
|
||||||
if (!this.__ICO__) {
|
if (!this.__ICO__) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue