From b4849707f7cd990a76061f4fa4bf71b66cae0f76 Mon Sep 17 00:00:00 2001 From: Cristiano Magro <cristiano.magro@vola.it> Date: Wed, 08 Jan 2025 13:01:02 +0100 Subject: [PATCH] v-model on Custom Components --- 11 - Forms/xno-forms-01-starting-setup/src/App.vue | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/11 - Forms/xno-forms-01-starting-setup/src/App.vue b/11 - Forms/xno-forms-01-starting-setup/src/App.vue new file mode 100644 index 0000000..8f00000 --- /dev/null +++ b/11 - Forms/xno-forms-01-starting-setup/src/App.vue @@ -0,0 +1,28 @@ +<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> \ No newline at end of file -- Gitblit v1.8.0