Files
cms_thermo_active/Step/wwwroot/src/components/test-empty.vue
T
Paolo Possanzini 85b2ef9e43 keypad
2018-02-16 17:27:56 +01:00

23 lines
353 B
Vue

<template>
<div class="test-empty">
<keypad></keypad>
</div>
</template>
<script>
import { Keypad } from "src/modules/base-components";
export default {
components: { keypad: Keypad }
};
</script>
<style>
.test-empty{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
</style>