This is a solution to the Multi-step form challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Users should be able to:
- Complete each step of the sequence
- See a summary of their selections on the final step and confirm their order
- View the optimal layout for the interface depending on their device's screen size
- See hover and focus states for all interactive elements on the page
Desktop:
Mobile:
- Solution URL: mySolution
- Live Site URL: MyLiveSite
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- Mobile-first workflow
- Vue JS - JS library
- VueCli - Vue Cli
- VueRouter - For routing purposes in Vue
- Pinia - State management for Vue Application
- VeeValidate - For easier form validation in Vue
I learned how to use Vue Router to route to different routes, either via ´router-link´ or by pushing the view by using `this.$router.push()´. I also got to know my weaknesses and what I should improve on, and that is concepts like form validation and data storage.
Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge.
<script setup>
defineProps ({
informationTitle:String,
informationText:String
})
</script>
<template>
<section class="information__section">
<div class="container row">
<h2 class="information__title"> {{ informationTitle }} </h2>
<p class="information__text"> {{ informationText }} </p>
</div>
</section>
</template>
I'm going to focus on improving my knowledge about Vue, try making fullstack applications with NodeJs and make more projects with Python.
-
Blog article about how to make a circle in CSS - This helped me with making a perfectly round circle.
-
Mozilla DOCs - This is an amazing article which helped me to recall how to use
grid-template-areas
andgrid-areas
for aligning multiple elements in Grid. I'd recommend this website to anyone that needs help understanding things and concepts in CSS, JavaScript and HTML. -
Vue Router Docs - This is an amazing article which helped me to recall how to use Vue Router correctly to route to different views in my app.
-
Take control of background images by Kevin Powell - This is a amazing video which helped me to understand how to use
background-image
's correctly without the picture being cropped to much and how to make the images look better.
- Website - MyWebsite
- Frontend Mentor - @foxynoxy
- Twitter - @muggie43
- LinkedIn - myLinkedIn
(Binh2's version)[https://github.com/Binh2/multi-step-form/blob/main/src/views/InfoView.vue]
This template should help get you started developing with Vue 3 in Vite.
VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
See Vite Configuration Reference.
npm install
npm run dev
npm run build
Lint with ESLint
npm run lint