Skip to content

Commit 1fd1d17

Browse files
committed
fix: fix build, and update build files
1 parent 7e04f03 commit 1fd1d17

8 files changed

+14
-2870
lines changed

CIcon.vue

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ export default {
1515
props: {
1616
name: String,
1717
content: [String, Array],
18-
// fill: String,
19-
// background: String,
2018
size: {
2119
type: String,
2220
validator: size => ['sm', 'lg', 'xl', 'custom-size'].includes(size)
@@ -42,12 +40,6 @@ export default {
4240
viewBox () {
4341
return this.$attrs.viewBox || `0 0 ${ this.icon.coordinates }`
4442
},
45-
// style () {
46-
// return {
47-
// fill: this.fill || 'currentColor',
48-
// background: this.background
49-
// }
50-
// },
5143
computedSize () {
5244
return this.$attrs.width || this.$attrs.height ? 'custom-size' : this.size
5345
},

babel.config.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
module.exports = {
22
presets: [
3-
["@vue/app", {
4-
"modules": false
5-
}]
3+
['@babel/preset-env']
64
]
7-
}
5+
}

0 commit comments

Comments
 (0)