This commit is contained in:
蔡玲
2024-10-09 11:17:42 +08:00
commit 29bd2ea918
104 changed files with 23376 additions and 0 deletions

24
.babelrc Normal file
View File

@@ -0,0 +1,24 @@
{
"presets": [
["es2015", { "modules": false }],
[
"env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": [
"transform-vue-jsx",
"transform-runtime",
[
"component",
{
"libraryName": "element-ui",
"styleLibraryName": "theme-chalk"
}
]
]
}