23 lines
353 B
Vue
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>
|
|
|