You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
975 B
56 lines
975 B
4 years ago
|
<template>
|
||
|
<card class="card-user" style="max-height:100%">
|
||
|
|
||
|
<div class="row" >
|
||
|
<div class="col-6 order-first " >
|
||
|
<br>
|
||
|
<mydeploy-manage-bootstrap>
|
||
|
|
||
|
</mydeploy-manage-bootstrap>
|
||
|
</div>
|
||
|
|
||
|
<div class="col-6 order-last" >
|
||
|
<br>
|
||
|
|
||
|
<mydeploy-manage-view>
|
||
|
|
||
|
</mydeploy-manage-view>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</card>
|
||
|
</template>
|
||
|
<script>
|
||
|
import {mapState, mapGetters, mapActions} from 'vuex'
|
||
|
import card from '@/components/Card.vue'
|
||
|
import MydeployManageBootstrap from "./manageservices/deploy-bootstrap.vue";
|
||
|
import MydeployManageView from "./manageservices/view-service.vue";
|
||
|
export default {
|
||
|
components: {
|
||
|
card,
|
||
|
MydeployManageBootstrap,
|
||
|
MydeployManageView
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
loading: false,
|
||
|
consoleView: 'off',
|
||
|
productIndex: 1
|
||
|
}
|
||
|
},
|
||
|
mounted() {
|
||
|
},
|
||
|
beforeDestroy () {
|
||
|
},
|
||
|
|
||
|
|
||
|
created () {
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
<style>
|
||
|
</style>
|
||
|
|