exam.vue 398 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="container">
  3. <!-- 返回按钮 -->
  4. <back :text="singleDetail.examInfo.name"></back>
  5. </view>
  6. </template>
  7. <script>
  8. import {
  9. mapState,
  10. mapMutations
  11. } from 'vuex'
  12. export default {
  13. computed: {
  14. ...mapState('m_children', ['singleDetail'])
  15. },
  16. data(){
  17. return{
  18. };
  19. },
  20. onLoad() {
  21. },
  22. methods:{
  23. }
  24. }
  25. </script>
  26. <style>
  27. </style>