19 lines
323 B
Vue
19 lines
323 B
Vue
<script setup>
|
|
import AppFooter from '@/components/AppFooter.vue'
|
|
import InputEntry from '@/components/InputEntry.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<view class="root-container">
|
|
<InputEntry />
|
|
<AppFooter />
|
|
</view>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.root-container {
|
|
padding: 5rem 2.5rem;
|
|
text-align: center;
|
|
}
|
|
</style>
|