123456789101112131415161718192021222324252627 |
- <template>
- <div class="height_100">
- <assistWritingInstruction></assistWritingInstruction>
- </div>
- </template>
- <script>
- import assistWritingInstruction from './assistWritingInstruction1.vue';
- export default {
- components: {
- assistWritingInstruction
- },
- props: {},
- data() {
- return {
- };
- },
- watch: {},
- computed: {
- },
- created() {},
- mounted() {},
- methods: {},
- };
- </script>
- <style lang="scss" scoped>
- </style>
|