Browse Source

version to 1.3.0.release

pull/9/head 1.3.0.RELEASE
就眠仪式 4 years ago
parent
commit
3beb2fbea5
  1. 2
      .editorconfig
  2. 2
      .env.development
  3. 2
      .env.production
  4. 1
      .gitignore
  5. 2
      README.md
  6. 2
      babel.config.js
  7. 2
      package.json
  8. 1
      public/theme.less
  9. 1
      src/main.js
  10. 2
      vue.config.js

2
.editorconfig

@ -10,4 +10,4 @@ trim_trailing_whitespace = true
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
trim_trailing_whitespace = false

2
.env.development

@ -1,2 +1,2 @@
NODE_ENV = development
VUE_APP_API_BASE_URL = 'http://127.0.0.1:8080/api'
VUE_APP_API_BASE_URL = 'http://127.0.0.1:8080/api'

2
.env.production

@ -1,2 +1,2 @@
NODE_ENV = 'production'
VUE_APP_API_BASE_URL = 'http://127.0.0.1:8080/api'
VUE_APP_API_BASE_URL = 'http://127.0.0.1:8080/api'

1
.gitignore

@ -2,7 +2,6 @@
node_modules
/dist
# local env files
.env.local
.env.*.local

2
README.md

@ -15,7 +15,7 @@
<p align="center">
<a href="#">
<img src="https://img.shields.io/badge/Pear Admin Ant-1.0.0.release-green.svg" alt="Pear Admin Ant Version">
<img src="https://img.shields.io/badge/Pear Admin Ant-1.3.0.release-green.svg" alt="Pear Admin Ant Version">
</a>
<a href="#">
<img src="https://img.shields.io/badge/Vue-3.0.0+-green.svg" alt="Vue Version">

2
babel.config.js

@ -19,4 +19,4 @@ module.exports = {
}
]
]
};
};

2
package.json

@ -68,4 +68,4 @@
"last 2 versions",
"not dead"
]
}
}

1
public/theme.less

@ -29,6 +29,7 @@
.pear-label-tab .ant-tabs-tab-active *{
color:white!important;
}
// 主题
.pearone-color .color-content li.layui-this:after,
.pearone-color .color-content li:hover:after {

1
src/main.js

@ -9,6 +9,7 @@ import "ant-design-vue/dist/antd.less";
import "./mock";
import directives from "./directives"
const app = createApp(App);
app.use(Antd);
app.use(Pear);

2
vue.config.js

@ -93,4 +93,4 @@ module.exports = {
}
}
}
};
};
Loading…
Cancel
Save