- attivita

- gestione degli script sul server
 - creato websocket per interagire con gli script del server.
This commit is contained in:
Surya Paolo
2024-08-29 23:31:54 +02:00
parent 79e874e3e0
commit 8f4ff8ff9c
39 changed files with 1373 additions and 303 deletions

View File

@@ -6,6 +6,7 @@ import { CBarSelection } from '../CBarSelection'
export default defineComponent({
name: 'CTitlePage',
components: {CBarSelection},
emits: ['clickButtBar'],
props: {
ind: {
type: Number,
@@ -53,11 +54,16 @@ export default defineComponent({
onMounted(mount)
function clickButtBar(item: any) {
emit('clickButtBar', item)
}
return {
mytitle,
myicon,
mycolor,
table,
clickButtBar,
}
},
})

View File

@@ -22,6 +22,8 @@
:mycolor="mycolor"
:prop_search="false"
:table="table"
@clickButtBar="clickButtBar"
:ind="ind"
>
<slot />
</CBarSelection>