nixin-web/components/form/hedgedoc.vue

12 lines
256 B
Vue
Raw Normal View History

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