Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
fbf3379d
authored
2022-08-12 10:30:02 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:组件修改
1 parent
ac3fafc6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
11 deletions
src/components/dialogBox/index.js → src/components/Base/base.js
src/components/lb-table/index.js
src/main.js
src/components/
dialogBox/index
.js
→
src/components/
Base/base
.js
View file @
fbf3379
import
dialogBox
from
'./dialogBox.vue'
import
dialogBox
from
'@/components/DialogBox/dialogBox.vue'
import
lbTable
from
'@/components/lb-table/lb-table.vue'
export
default
{
install
:
(
Vue
)
=>
{
Vue
.
component
(
'dialogBox'
,
dialogBox
);
Vue
.
component
(
'lbTable'
,
lbTable
);
}
}
\ No newline at end of file
...
...
src/components/lb-table/index.js
deleted
100644 → 0
View file @
ac3fafc
import
lbTable
from
'./lb-table.vue'
export
default
{
install
:(
Vue
)
=>
{
Vue
.
component
(
'lbTable'
,
lbTable
);
}
}
\ No newline at end of file
src/main.js
View file @
fbf3379
...
...
@@ -6,8 +6,7 @@ import 'normalize.css/normalize.css' // a modern alternative to CSS resets
import
Element
from
'element-ui'
import
'./styles/element-variables.scss'
import
'@/styles/index.scss'
// global css
import
lbTable
from
'./components/lb-table/index'
import
dialogBox
from
'./components/dialogBox/index'
import
Base
from
'./components/Base/base'
import
'./image/icons'
// icon
import
store
from
'./store'
...
...
@@ -16,8 +15,7 @@ import _ from 'lodash'
import
*
as
filters
from
'./filters'
// global filters
Vue
.
use
(
Element
,
{
size
:
'small'
})
Vue
.
use
(
lbTable
)
Vue
.
use
(
dialogBox
)
Vue
.
use
(
Base
)
Object
.
keys
(
filters
).
forEach
(
key
=>
{
Vue
.
filter
(
key
,
filters
[
key
])
})
...
...
Please
register
or
sign in
to post a comment