Files
dvcp_v2_webapp/project/ai/AppCopilot/AppCopilot.vue

22 lines
286 B
Vue
Raw Permalink Normal View History

2024-06-04 18:16:51 +08:00
<script>
export default {
name: "AppCopilot",
2024-06-17 15:55:26 +08:00
props: {
instance: Function,
dict: Object,
permissions: Function
},
2024-06-04 18:16:51 +08:00
}
</script>
<template>
<section class="AppCopilot">
2024-06-17 15:55:26 +08:00
<ai-copilot :http="instance"/>
2024-06-04 18:16:51 +08:00
</section>
</template>
<style scoped lang="scss">
</style>