create.js 347 B

12345678910111213141516
  1. import { mapState, mapMutations } from 'vuex'
  2. export default {
  3. computed: {
  4. ...mapState('common', {
  5. cluster: state => state.k8s.cluster,
  6. namespace: state => state.k8s.namespace,
  7. }),
  8. },
  9. methods: {
  10. ...mapMutations('common', {
  11. setCluster: 'SET_K8S_CLUSTER',
  12. setNamespace: 'SET_K8S_NAMESPACE',
  13. }),
  14. },
  15. }