2018-07-16 22:22:55 +08:00
|
|
|
<template>
|
2019-04-27 20:08:40 +08:00
|
|
|
<d2-container type="card" class="page-demo-playground-fullscreen">
|
2018-07-16 22:22:55 +08:00
|
|
|
<template slot="header">全屏</template>
|
2018-08-09 15:02:50 +08:00
|
|
|
<el-button type="primary" @click="toggle">
|
|
|
|
|
toggle 切换全屏
|
2018-07-16 22:22:55 +08:00
|
|
|
</el-button>
|
|
|
|
|
</d2-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2018-09-18 11:16:19 +08:00
|
|
|
import { mapActions } from 'vuex'
|
2018-07-16 22:22:55 +08:00
|
|
|
export default {
|
|
|
|
|
methods: {
|
2018-09-18 11:16:19 +08:00
|
|
|
...mapActions('d2admin/fullscreen', [
|
2018-08-09 15:02:50 +08:00
|
|
|
'toggle'
|
2018-07-16 22:22:55 +08:00
|
|
|
])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|