12345678910111213141516171819202122 |
- import { mapGetters } from "vuex";
- export default {
- props: {
- activeItem: Array,
- // treeList:Array
- },
- computed: {
- userinfo(){
- return this.$s.getObj('userinfo')
- },
- form() {
- return this.$store.state.chart.form
- },
- treeList() {
- return this.$store.state.chart.treeList
- },
- selected() {
- return this.$store.state.chart.selected
- },
- },
- }
|