This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-02-08 2024 forms-01-st.../src/App.vue

28 lines
307 B
Vue

<template>
<the-form></the-form>
</template>
<script>
import TheForm from './components/TheForm.vue';
export default {
components: {
TheForm
}
}
</script>
<style>
* {
box-sizing: border-box;
}
html {
font-family: sans-serif;
}
body {
margin: 0;
background-color: #292929;
}
</style>