123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <div class="subPage">
- 1
- </div>
- </template>
-
- <script>
- import { mapState } from 'vuex'
-
- export default {
- name: '',
- data () {
- return {}
- },
- mounted () {
- this.$nextTick(function () {})
- },
- computed: {
- ...mapState({
- cases: x => x.app.cases.list,
- defaultCaseId: x => x.app.cases.default
- }),
- CaseId: {
- get () {
- return this.postData.caseid || this.defaultCaseId
- },
- set (val) {
- this.postData.caseid = val
- }
- }
- },
- methods: {
- }
- }
- </script>
-
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style lang="scss" scoped>
- </style>
|