Trending

#vuetify

Latest posts tagged with #vuetify on Bluesky

Latest Top
Trending

Posts tagged #vuetify

I read the doc and I'm able to show the tooltip OR the popup, but when I try to activate both that doesn't work.... 😓

#vuetify #vuejs #frontenddeveloper

2 0 0 0

Hi there 👋
How to handle a popup and a tooltip for a button with #vuetify ?

#Dev #question #vuejs #frontend

2 0 1 0
Preview
新刊「VueとVuetifyで学ぶLP制作」が登場!技術者のためのガイドブック インプレスが発行した新刊『VueとVuetifyで学ぶLP制作』は、技術者向けにLP制作の実践ノウハウを解説。Web開発に役立つ一冊です。

新刊「VueとVuetifyで学ぶLP制作」が登場!技術者のためのガイドブック #インプレス #Vue.js #Vuetify

インプレスが発行した新刊『VueとVuetifyで学ぶLP制作』は、技術者向けにLP制作の実践ノウハウを解説。Web開発に役立つ一冊です。

0 0 0 0
Preview
技術者のためのLP制作入門!『VueとVuetify』で快適なフロントエンド開発を実現 最新刊『VueとVuetifyで学ぶLP制作』は、初心者でも分かるフロントエンド開発の実践書。デザインからデプロイまでを網羅!

技術者のためのLP制作入門!『VueとVuetify』で快適なフロントエンド開発を実現 #東京都 #千代田区 #インプレス #Vue.js #Vuetify

最新刊『VueとVuetifyで学ぶLP制作』は、初心者でも分かるフロントエンド開発の実践書。デザインからデプロイまでを網羅!

0 0 0 0
Preview
Nuxt3 form validation on client side with Yup > **Introduction** > In this article, we will learn that how to implement Nuxt3 form validation on client side with Yup. Yup is a schema builder for runtime value parsing and validation. As you might know, there are some schema validation moduldes like Yup, Zod and so on. By using these validation modules, we are not able to enhance effiency of web development but also decrease cost of programming. Also, modules can make web developers with your teams integrate coding rules and improve maintenace for expanding functions. From the perspective vies of enhancing and maintaning programs, thse modules are supported and used for many web companies, and the community of using these library are active across ther world. Yup as well as Zod is hightly flexible to customize valiation and error message on client side. In addition, the code rule of validation is simple and easy to understand for web developers. Yup module is managed for npm and yarn, and it is able to use both Nuxt3 and Next.js. > **Sample image for Nuxt3 app** > The goal of this page is to validate Nuxt3 form like this. If we click submit button before not input values and select radio button, checkbox, Yup validation will be active and show error message on client side. The below picture is to display validate. > **Install module of Yup** I used to install Yup module by npm. The Official web site for Yup is below link. https://www.npmjs.com/package/yup To install in Nuxt3 app, input command line like this. npm i yup > **How to use in Nuxt3 app** After installing Yup module, import module information in nuxt3 file. import * as yup from 'yup'; The full code is below. **frontend/pages/navigation/nabigation.vue** <script setup lang="ts"> import { ref } from 'vue'; import { useField, useForm } from 'vee-validate'; import * as yup from 'yup'; import axios from 'axios'; import { useRouter } from 'vue-router'; const formRef = ref(null); const { handleSubmit } = useForm(); const router = useRouter(); /*---Name validation---*/ const nameField = useField( 'name', yup.string().required('Name must be required.').min(2, 'Please input over 1 character.') ); const { value: name, errorMessage: nameerror } = nameField; /*---Email validation---*/ const emailField = useField( 'email', yup.string().required('Email must be required.').matches(/^[a-zA-Z0-9_\-]+(\.[a-zA-Z0-9_\-]+)*@([a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9]\.)+[a-zA-Z]{2,}$/, { message: 'Mail address is invalid' }) ); const { value: email, errorMessage: emailerror } = emailField; /*---Password validation---*/ const passwordField = useField( 'password', yup.string().required('Password must be required.').min(2, 'Please input over 1 character.').max(11, 'The password is too long. Please input until 10 characters.') ); const { value: password, errorMessage: passworderror } = passwordField; /*---Gender validation---*/ const genderField = useField( 'gender', yup.string().required('Gender must be required.') ); const { value: gender, errorMessage: gendererror } = genderField; /*---Survey validation---*/ const surveyField = useField<string[]>( 'survey', yup.array().of(yup.string()).min(1, 'Please choose at least one.'), {initialValue:[]} // 配列の長さが1以上であることを確認 ); const { value: survey } = surveyField; const nameErrorMessage = ref(''); const emailErrorMessage = ref(''); const passwordErrorMessage = ref(''); const genderErrorMessage = ref(''); const surveyErrorMessage = ref(''); /** Set alert bar on header */ const globalError = ref(''); const showAlert = ref(false); /** Define formData validate flag */ const flagForValidate = ref(true); const surveyOptions = [ 'I want to know from News letters', 'I want to know from Campaign', 'I want to know from Events' ]; const onSubmit = async()=>{ try{ /** Initialize validate flag. */ flagForValidate.value = true; /** Hidden alert display */ showAlert.value = false; /** Initialize error message */ nameErrorMessage.value = ''; emailErrorMessage.value = ''; passwordErrorMessage.value = ''; genderErrorMessage.value = ''; surveyErrorMessage.value = ''; /** Define FormData object */ const formData = new FormData(); /** Validate value of name if name is empty or not. */ if(name.value === '' || name.value === undefined){ nameErrorMessage.value = 'Please input your name.'; /** Update value of flag */ flagForValidate.value = false; } formData.append('name',name.value); /** Validate value of email if email is empty or not. */ if(email.value === '' || email.value === undefined){ emailErrorMessage.value = 'Please input your email.'; /** Update value of flag */ flagForValidate.value = false; } formData.append('email',email.value); /** Validate value of password if password is empty or not. */ if(password.value === '' || password.value === undefined){ passwordErrorMessage.value = 'Please input your password.'; /** Update value of flag */ flagForValidate.value = false; } formData.append('password',password.value); /** Validate value of gender if gender is empty or not. */ if(gender.value === '' || gender.value === undefined){ genderErrorMessage.value = 'Please input your gender.'; /** Update value of flag */ flagForValidate.value = false; } formData.append('gender',gender.value); /** Validate value of gender if gender is empty or not. */ if(survey.value.length === 0 || survey.value === undefined){ surveyErrorMessage.value = 'Please input your survey.'; /** Update value of flag */ flagForValidate.value = false; } /** Evaluate value of flag:if this is false,show alert message on header.*/ if(!flagForValidate.value){ showAlert.value = true; globalError.value = 'Invalide some values on the form.Please confirm and input data.'; return; } formData.append('survey',JSON.stringify(survey.value)); console.log('survey.value:', survey.value); console.log(...formData.entries()); const response = await axios.post('http://localhost:8000/api/creategeneraluser/',formData); if(response.status === 201){ alert('Sucess'); console.log(response); router.push('/dashboard/dashboard'); }else{ alert('>>'); } }catch(error){ alert('error'); console.log(error); } } //const router = useRouter(); const clickBackToTopPage = () => { router.push('/'); }; </script> <template> <v-app> <v-alert v-if="showAlert" :text="globalError" type="error" title="Invalide Error" class="mt-2 mb-4" border="start" variant="tonal" color="error" icon="$error" prominent ></v-alert> <v-main> <v-container class="mt-5"> <v-form @submit.prevent="onSubmit" ref="formRef"> <!-- Name --> <v-text-field v-model="name" label="Name" required ></v-text-field> <span>{{ nameerror }}</span> <span style="color:red;">{{ nameErrorMessage }}</span> <!-- Mail Address --> <v-text-field v-model="email" label="Email" type="email" required ></v-text-field> <p>{{ emailerror }}</p> <span style="color:red;">{{ emailErrorMessage }}</span> <!-- Password --> <v-text-field v-model="password" label="Password" type="password" required ></v-text-field> <p>{{ passworderror }}</p> <span style="color:red;">{{ passwordErrorMessage }}</span> <!-- Gender (radio button) --> <v-radio-group v-model="gender" label="Sex" row > <v-radio label="man" value="man"></v-radio> <v-radio label="woman" value="woman"></v-radio> <v-radio label="other" value="other"></v-radio> </v-radio-group> <p>{{ gendererror }}</p> <span style="color:red;">{{ genderErrorMessage }}</span> <br/> <!-- Survey (checkboxes) --> <v-label>Survey</v-label> <v-row> <v-col cols="12" v-for="option in surveyOptions" :key="option"> <v-checkbox :label="option" :value="option" v-model="survey" hide-details /> </v-col> </v-row> <span style="color:red;">{{ surveyErrorMessage }}</span> <br/> <!-- <v-selection-group v-model="survey" multiple> <v-checkbox v-for="option in surveyOptions" :key="option" :label="option" :value="option"> </v-checkbox > </v-selection-group> <p>{{ surveyerror }}</p> --> <!-- Submit button --> <v-btn type="submit" color="primary" class="mr-4">Register</v-btn> <v-btn type="button" color="success" @click="clickBackToTopPage">BackToTopPage</v-btn> </v-form> </v-container> </v-main> </v-app> </template> The description of Nuxt3 form validation with yup, is end. Thank you for reading my article.
0 0 0 0

I’m going to take a crack at building a web app with Vue and Vuetify. I’m curious if I should stick with JavaScript, or try TypeScript. I’m open to insights and suggestions.
#webdev #vue #vuetify #javascript #typescript

7 0 2 0
Preview
Vuetify Developer at Vuetify LLC Vuetify LLC is looking for a Vuetify Developer

#HIRING Vuetify Developer
Join the team and help shaping the future of @vuetify.bsky.social 

🌎 Remote (Chicago +/- 4h)
💵 $5k/mo

https://vuejobs.com/jobs/vuetify-llc-vuetify-developer

#vuejs #vuejobs #remotework #frontend #frontendjobs #vuetify

1 1 0 0

If you were wondering, you CAN make your own #vuetify based #vue component library.

0 0 1 0

New project outlines :

The idea is to have a home pharmacy management web application that supports family users' access to this stock.

The application is based on #Strapi, #Nuxt (and #Vuetify).

We are going slowly 🐌, but I hope we will get to the end, not like other side projects. 😆

3 0 1 0
Post image

Welcome to Vue Designer, a Visual IDE for your Vue apps. Step into the future of web design with Vue Designer! Tailored for building dynamic Vue applications, it’s ready to lift your web design game to the next level. #vue #vuedesigner #pinegrow #nuxt #quasar #iles #vite #tailwindcss #vuetify

3 0 0 0
Preview
Nuxt3 × Vuetify で Storybook 代替のUIカタログ「Histoire」を使う +自動生成ツール作りました

Nuxt3 × Vuetify で Storybook 代替のUIカタログ「Histoire」を使用する件について記事に致しましたのでご査収ください。
Storyの自動生成ツールも作成しました。

#nuxt3 #vuetify #histoire
zenn.dev/tanukikyo/ar...

1 0 0 0
1kevgriff - Twitch Hey friends! I'm Kevin Griffin - an 11-time Microsoft MV...

I'm going live! Today's topic: Revisiting a shelved #VueJS #Vuetify app that I need to get into production

📺 Twitch: https://twitch.tv/1kevgriff
📺 YouTube: https://www.youtube.com/c/swiftkick/live
📺 Periscope: https://www.pscp.tv/1kevgriff

0 0 0 0
undefined @undefined User was LIVE — , ,

Revisiting a shelved #VueJS #Vuetify app that I need to get into production www.pscp.tv/w/cZwQ2jEzMjgzMzl8MVlxS0...

0 0 0 0