no message
Former-commit-id: f38c487f762ad67c802dfcb6298643b6e1006ed9 [formerly f38c487f762ad67c802dfcb6298643b6e1006ed9 [formerly f38c487f762ad67c802dfcb6298643b6e1006ed9 [formerly f38c487f762ad67c802dfcb6298643b6e1006ed9 [formerly 090232b1fa7f24acc6866c66770005e6d7aef882 [formerly 7ef58dfb0a93546d7b7963d18466920382b86f2b]]]]] Former-commit-id: b772893e940794b10f251febde3081ecdd3ee8ad Former-commit-id: e895563f25c099d6fcc4e5f1cd2983be2dc7db69 Former-commit-id: 0547f58e1a247c2049c0b57b1295ee9ab8914244 [formerly c962b4356fe760afe187944c6094899760903e3f] Former-commit-id: 222a0eea1d2ae960cc21f3dab37824e153af4ce7 Former-commit-id: a2905d96b7bbff2ec49d4063d0b30fcd6de8d0a2 Former-commit-id: 3926277c6269a68f0656f3ed5b9301fca8a892ab Former-commit-id: c3e4d1c2cee91c118134647006ec06c51e004681 Former-commit-id: 2cb65f028bc74e2598d1c36b71059cadee7d543c
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import htmlFormat from '@/utils/htmlFormat.js'
|
||||
import htmlFormat from '@/libs/htmlFormat.js'
|
||||
import value from './value'
|
||||
export default {
|
||||
data () {
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
|
||||
import d2admin from './modules/d2admin'
|
||||
|
||||
import menu from './modules/menu'
|
||||
import fullScreen from './modules/fullScreen'
|
||||
import theme from './modules/theme'
|
||||
@@ -9,6 +11,7 @@ Vue.use(Vuex)
|
||||
|
||||
export default new Vuex.Store({
|
||||
modules: {
|
||||
d2admin,
|
||||
menu,
|
||||
fullScreen,
|
||||
theme
|
||||
|
||||
13
src/store/modules/d2admin.js
Normal file
13
src/store/modules/d2admin.js
Normal file
@@ -0,0 +1,13 @@
|
||||
export default {
|
||||
state: {
|
||||
// 系统
|
||||
appName: 'D2Admin',
|
||||
// 全屏
|
||||
isFullScreen: false
|
||||
},
|
||||
mutations: {
|
||||
alertAppName (state) {
|
||||
alert(state.appName)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user