12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div>
- 课程开发
- </div>
- </template>
- <script>
- export default {
- name: 'courseware',
- layout:'templateB',
- components: {
- },
- props: {
- },
- data() {
- return {
- };
- },
- computed: {},
- methods: {
- },
- created() {
- },
- mounted() {
- },
- beforeDestroy() {
- },
- };
- </script>
- <style>
- </style>
|