mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
38 lines
918 B
Vue
38 lines
918 B
Vue
<template>
|
|
<div class="form-check form-switch ms-1" style="white-space:nowrap">
|
|
<input class="form-check-input" style="cursor:pointer;" :checked="value_2 == true" @click="change_value()" type="checkbox" id="toggle-Begin" :title="title">
|
|
<label class="form-check-label" for="toggle-Begin" v-html="label">
|
|
</label>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, onMounted, computed, watch, h } from "vue";
|
|
|
|
const emit = defineEmits(['update:value', 'change_value']);
|
|
|
|
const props = defineProps({
|
|
value: Boolean,
|
|
title: String,
|
|
label: String,
|
|
});
|
|
|
|
const value_2 = ref(false);
|
|
|
|
onMounted(() => {
|
|
value_2.value = props.value;
|
|
});
|
|
|
|
watch(() => props.value, (cur_value, old_value) => {
|
|
value_2.value = props.value;
|
|
}, { flush: 'pre'});
|
|
|
|
function change_value() {
|
|
emit('update:value', !value_2.value);
|
|
emit('change_value', !value_2.value);
|
|
}
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|