123456789101112131415161718192021222324252627 |
- <template>
- <view>asdfsdfas</view>
- </template>
- <script setup>
- import {
- getKechengList
- } from "@/api/course.js";
- import {
- onLoad,
- onReady
- } from "@dcloudio/uni-app"
- import {
- reactive,
- ref
- } from "vue";
- onLoad((options) => {
- console.log('options',options);
- });
- const kechengClick = ()=>{
-
- }
- </script>
- <style lang="scss">
- </style>
|