2024-10-10 10:45:58 +00:00
|
|
|
<script setup>
|
|
|
|
import { inject } from 'vue'
|
|
|
|
let nixin = inject('nixin')
|
|
|
|
const service = inject('service')
|
|
|
|
</script>
|
2024-10-09 11:05:41 +00:00
|
|
|
<template>
|
2024-10-10 10:45:58 +00:00
|
|
|
<label>
|
|
|
|
<input type="checkbox" v-model="nixin.services" :value="service.id" />
|
|
|
|
{{service.name}}
|
|
|
|
</label>
|
2024-10-09 11:05:41 +00:00
|
|
|
</template>
|