index.vue 273 B

1234567891011121314151617
  1. <template>
  2. <IndexPage ref="indexPageRefs" :dataType="2"></IndexPage>
  3. </template>
  4. <script>
  5. import IndexPage from '../components/IndexPage.vue'
  6. export default {
  7. name: 'approvalAlready',
  8. components: {
  9. IndexPage
  10. }
  11. }
  12. </script>
  13. <style lang="scss" scoped>
  14. </style>