Former-commit-id: cbdaa441e0c874b8fbb7979e6aff20d0a0fa87f8 [formerly 30dfb0993f22a72340daef67139c551809378f3c] [formerly cbdaa441e0c874b8fbb7979e6aff20d0a0fa87f8 [formerly 30dfb0993f22a72340daef67139c551809378f3c] [formerly cbdaa441e0c874b8fbb7979e6aff20d0a0fa87f8 [formerly 30dfb0993f22a72340daef67139c551809378f3c] [formerly 30dfb0993f22a72340daef67139c551809378f3c [formerly e5faa130a18ec8503d06986dd24c5b19db860385 [formerly 24dd04172a159e9815d93468fa9246865933c3a6]]]]] Former-commit-id: b756b7328e7bf22ec477eb9ed011fc8ebc2d0f03 Former-commit-id: c31be5add0c4cc936e26cb729f9b68d77a47ad36 Former-commit-id: f14ae8201d5a72a6189603005748855f25804975 [formerly 846c1a85c865586505b873ff95c7dd9c38af9d32] Former-commit-id: 3cad07b4df7df8d8050191d938fdf3eb8fa076f0 Former-commit-id: 7f3ff1b1014f3fcba8ee5fd0ff11915b319a87cd Former-commit-id: 265caadab51b892743fac92e19838e32a286659a Former-commit-id: 820e84ad2baf17b8cfc96109f964c8eb3822dd06 Former-commit-id: d72043dbbbf1e07be6410e5d22e912092640aaa8
27 lines
672 B
Vue
27 lines
672 B
Vue
<template>
|
|
<div>
|
|
<el-tooltip effect="dark" content="主题" placement="bottom">
|
|
<el-button class="d2-ml-0 d2-mr btn-text can-hover" type="text" @click="dialogVisible = true">
|
|
<d2-icon name="diamond" style="font-size: 16px"/>
|
|
</el-button>
|
|
</el-tooltip>
|
|
<el-dialog title="主题" width="600px" :visible.sync="dialogVisible" :append-to-body="true">
|
|
<d2-theme-list style="margin-top: -25px;"/>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import themeList from './components/d2-theme-list'
|
|
export default {
|
|
components: {
|
|
'd2-theme-list': themeList
|
|
},
|
|
data () {
|
|
return {
|
|
dialogVisible: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|