2018-07-16 22:22:55 +08:00
|
|
|
<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>
|
2018-08-18 00:04:45 +08:00
|
|
|
<el-dialog title="主题" width="600px" :visible.sync="dialogVisible" :append-to-body="true">
|
2018-07-16 22:22:55 +08:00
|
|
|
<d2-theme-list style="margin-top: -25px;"/>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2018-07-17 21:54:38 +08:00
|
|
|
import themeList from './components/d2-theme-list'
|
2018-07-16 22:22:55 +08:00
|
|
|
export default {
|
2018-07-17 21:54:38 +08:00
|
|
|
components: {
|
|
|
|
|
'd2-theme-list': themeList
|
|
|
|
|
},
|
2018-07-16 22:22:55 +08:00
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
dialogVisible: false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|