mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-11 20:06:47 +08:00
讲师费用管理,页面跳转,刷新页面
This commit is contained in:
@@ -263,17 +263,17 @@ export default {
|
||||
ProjectManager,
|
||||
LecturerAppEdit,
|
||||
},
|
||||
props: {
|
||||
activeKeyProps: String,
|
||||
default: null,
|
||||
},
|
||||
setup(props, emit) {
|
||||
watch(() => props.key, (val) => {
|
||||
console.log(val, 'valllllll')
|
||||
|
||||
setup() {
|
||||
const props = defineProps({
|
||||
activeKeyProps: {
|
||||
type: String,
|
||||
default: false,
|
||||
},
|
||||
})
|
||||
|
||||
watch(() => props.activeKeyProps, (activeKey) => {
|
||||
console.log(activeKey, 'activeKey props')
|
||||
watch(()=>props.activeKeyProps, (activeKeyPropsVal) => {
|
||||
console.log("activeKeyPropsVal",activeKeyPropsVal)
|
||||
})
|
||||
|
||||
onMounted(() => {
|
||||
|
||||
Reference in New Issue
Block a user