|
@@ -8,6 +8,7 @@
|
|
|
<tags-view v-if="needTagsView" />
|
|
<tags-view v-if="needTagsView" />
|
|
|
</div>
|
|
</div>
|
|
|
<app-main />
|
|
<app-main />
|
|
|
|
|
+ <alert-message/>
|
|
|
<!-- <right-panel v-if="showSettings">
|
|
<!-- <right-panel v-if="showSettings">
|
|
|
<settings />
|
|
<settings />
|
|
|
</right-panel> -->
|
|
</right-panel> -->
|
|
@@ -18,6 +19,7 @@
|
|
|
<script>
|
|
<script>
|
|
|
import RightPanel from '@/components/RightPanel'
|
|
import RightPanel from '@/components/RightPanel'
|
|
|
import { AppMain, Navbar, Settings, Sidebar, TagsView } from './components'
|
|
import { AppMain, Navbar, Settings, Sidebar, TagsView } from './components'
|
|
|
|
|
+import AlertMessage from "./AlertMessage.vue"
|
|
|
import ResizeMixin from './mixin/ResizeHandler'
|
|
import ResizeMixin from './mixin/ResizeHandler'
|
|
|
import { mapState } from 'vuex'
|
|
import { mapState } from 'vuex'
|
|
|
|
|
|
|
@@ -29,7 +31,8 @@ export default {
|
|
|
RightPanel,
|
|
RightPanel,
|
|
|
Settings,
|
|
Settings,
|
|
|
Sidebar,
|
|
Sidebar,
|
|
|
- TagsView
|
|
|
|
|
|
|
+ TagsView,
|
|
|
|
|
+ AlertMessage
|
|
|
},
|
|
},
|
|
|
mixins: [ResizeMixin],
|
|
mixins: [ResizeMixin],
|
|
|
computed: {
|
|
computed: {
|