toolMixin.js 575 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * 列表搜索的 mixin
  3. */
  4. import { mapGetters, mapMutations } from 'vuex'
  5. /* eslint-disable */
  6. export const tool = {
  7. computed: {
  8. ...mapGetters([
  9. 'activeComponent',
  10. 'componentsData'
  11. ])
  12. },
  13. methods: {
  14. ...mapMutations({
  15. setComponentsData: 'SET_COMPONENTSDATA'
  16. })
  17. },
  18. beforeDestroy(){
  19. },
  20. watch: {
  21. 'activeComponent.componentContent': {
  22. handler (newVal, oldVal) {
  23. console.log(newVal)
  24. // localStorage.setItem('componentsData', JSON.stringify(this.componentsData))
  25. },
  26. deep: true
  27. }
  28. }
  29. }