index1.vue 442 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="height_100">
  3. <assistWritingInstruction></assistWritingInstruction>
  4. </div>
  5. </template>
  6. <script>
  7. import assistWritingInstruction from './assistWritingInstruction1.vue';
  8. export default {
  9. components: {
  10. assistWritingInstruction
  11. },
  12. props: {},
  13. data() {
  14. return {
  15. };
  16. },
  17. watch: {},
  18. computed: {
  19. },
  20. created() {},
  21. mounted() {},
  22. methods: {},
  23. };
  24. </script>
  25. <style lang="scss" scoped>
  26. </style>