no message
Former-commit-id: b80308b29b9e8b99acce45106e998e78306b5b65 Former-commit-id: 4e7257ce4c36b1e65d6226ec3ec855464bb398d5 Former-commit-id: eb3c350c9ade30f1ed281ba96acc808947a273c2
This commit is contained in:
@@ -19,14 +19,11 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import SiderMenu from './_siderMenu'
|
|
||||||
import HeaderMenu from './_headerMenu'
|
|
||||||
import HeaderRight from './_headerRight'
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
SiderMenu,
|
SiderMenu: () => import('./_siderMenu'),
|
||||||
HeaderMenu,
|
HeaderMenu: () => import('./_headerMenu'),
|
||||||
HeaderRight
|
HeaderRight: () => import('./_headerRight')
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
import ChartDemoCard from '../components/ChartDemoCard.vue'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
ChartDemoCard
|
ChartDemoCard: () => import('../components/ChartDemoCard.vue')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,10 +62,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ChartCardHeader from './components/ChartCardHeader'
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
ChartCardHeader
|
ChartCardHeader: () => import('./components/ChartCardHeader')
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -54,10 +54,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ChartCardHeader from './components/ChartCardHeader'
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
ChartCardHeader
|
ChartCardHeader: () => import('./components/ChartCardHeader')
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -28,10 +28,9 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import icon from '@/assets/library/font-awesome-4.7.0-icon/icon.js'
|
import icon from '@/assets/library/font-awesome-4.7.0-icon/icon.js'
|
||||||
import IconCell from './components/IconCell'
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
IconCell
|
IconCell: () => import('./components/IconCell')
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -24,10 +24,9 @@ import Vue from 'vue'
|
|||||||
import clone from '@/utils/clone.js'
|
import clone from '@/utils/clone.js'
|
||||||
import Mock from 'mockjs'
|
import Mock from 'mockjs'
|
||||||
import settingDPD from './data/settingDPD'
|
import settingDPD from './data/settingDPD'
|
||||||
import MockDemoCard from './components/MockDemoCard'
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
MockDemoCard
|
MockDemoCard: () => import('./components/MockDemoCard')
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -36,8 +36,6 @@ import Vue from 'vue'
|
|||||||
import clone from '@/utils/clone.js'
|
import clone from '@/utils/clone.js'
|
||||||
import Mock from 'mockjs'
|
import Mock from 'mockjs'
|
||||||
import settingDTD from './data/settingDTD'
|
import settingDTD from './data/settingDTD'
|
||||||
import MockDemoCard from './components/MockDemoCard'
|
|
||||||
// mixin
|
|
||||||
import regexp from './mixins/regexp'
|
import regexp from './mixins/regexp'
|
||||||
import fn from './mixins/function'
|
import fn from './mixins/function'
|
||||||
export default {
|
export default {
|
||||||
@@ -46,7 +44,7 @@ export default {
|
|||||||
fn
|
fn
|
||||||
],
|
],
|
||||||
components: {
|
components: {
|
||||||
MockDemoCard
|
MockDemoCard: () => import('./components/MockDemoCard')
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -11,12 +11,10 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import DemoI18nControl from './components/DemoI18nControl'
|
|
||||||
import DemoI18n from './components/DemoI18n'
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
DemoI18nControl,
|
DemoI18nControl: () => import('./components/DemoI18nControl'),
|
||||||
DemoI18n
|
DemoI18n: () => import('./components/DemoI18n')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -11,12 +11,10 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import DemoI18nControl from './components/DemoI18nControl'
|
|
||||||
import DemoI18n from './components/DemoI18n'
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
DemoI18nControl,
|
DemoI18nControl: () => import('./components/DemoI18nControl'),
|
||||||
DemoI18n
|
DemoI18n: () => import('./components/DemoI18n')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user