| | |
| | | import { mapGetters } from "vuex"; |
| | | export default { |
| | | data() { |
| | | return { |
| | | box: false, |
| | | text: "", |
| | | list: [ |
| | | { |
| | | name: "默认主题", |
| | | value: "default", |
| | | }, |
| | | { |
| | | name: "白色主题", |
| | | value: "theme-white", |
| | | }, |
| | | { |
| | | name: "黑色主题", |
| | | value: "theme-dark", |
| | | }, |
| | | { |
| | | name: "炫彩主题", |
| | | value: "theme-star", |
| | | }, |
| | | { |
| | | name: "智能主题", |
| | | value: "theme-bule", |
| | | }, |
| | | { |
| | | name: "iview主题", |
| | | value: "theme-iview", |
| | | }, |
| | | { |
| | | name: "vip主题", |
| | | value: "theme-vip", |
| | | }, |
| | | { |
| | | name: "cool主题", |
| | | value: "theme-cool", |
| | | }, |
| | | { |
| | | name: "d2主题", |
| | | value: "theme-d2", |
| | | }, |
| | | { |
| | | name: "hey主题", |
| | | value: "theme-hey", |
| | | }, |
| | | { |
| | | name: "lte主题", |
| | | value: "theme-lte", |
| | | }, |
| | | ], |
| | | }; |
| | | return {}; |
| | | }, |
| | | watch: { |
| | | text: function (val) { |