File tree Expand file tree Collapse file tree 3 files changed +22
-9
lines changed Expand file tree Collapse file tree 3 files changed +22
-9
lines changed Original file line number Diff line number Diff line change 1+ import PropTypes from 'ant-design-vue/es/_util/vue-types'
2+ // TODO
3+ export default {
4+ name : 'TagSelect' ,
5+ props : {
6+ defaultValue : {
7+ type : [ PropTypes . arrayOf ( String ) , PropTypes . arrayOf ( Number ) ] ,
8+ default : ( ) => { }
9+ } ,
10+ expandable : {
11+ type : Boolean ,
12+ default : false
13+ } ,
14+ hideCheckAll : {
15+ type : Boolean ,
16+ default : false
17+ }
18+ }
19+ }
Original file line number Diff line number Diff line change 3030</template >
3131
3232<script >
33- import { RouteView } from ' @/layouts '
33+ import RouteView from ' ./RouteView '
3434import { mixinDevice } from ' @/utils/mixin'
3535
3636export default {
Original file line number Diff line number Diff line change @@ -86,20 +86,14 @@ module.exports = {
8686 } ,
8787
8888 devServer : {
89+ // development server port 8000
90+ port : 8000 ,
8991 proxy : {
9092 '/api' : {
9193 // target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro',
9294 target : 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro' ,
9395 ws : false ,
9496 changeOrigin : true
95- } ,
96- '/gateway' : {
97- target : 'https://www.easy-mock.com/mock/5b7bce071f130e5b7fe8cd7d/antd-pro' ,
98- ws : false ,
99- changeOrigin : true ,
100- pathRewrite : {
101- '^/gateway' : '/api'
102- }
10397 }
10498 }
10599 } ,
You canβt perform that action at this time.
0 commit comments