birbcontrol/src/components/GlobalDeviceBuzgerator.vue

26 lines
494 B
Vue

<template>
<b-overlay :show="false" rounded="sm">
<b-card
title="All devices"
tag="all-devices"
class="m-2"
>
<b-card-text>
Control all devices
</b-card-text>
<b-button variant="success" class="mr-1">Bring online</b-button>
<b-button variant="danger" class="mr-1">Bring offline</b-button>
</b-card>
</b-overlay>
</template>
<script>
export default {
name: "GlobalDeviceBuzgerator"
}
</script>
<style scoped>
</style>