1
0
Fork 0

Compare commits

...

10 Commits

Author SHA1 Message Date
Voyage b4aea213fa
Merge a67fbb9555 into 7dea698a79 2024-04-16 11:02:49 +10:00
郑培鑫 7dea698a79 feat: add vue-default-page 2024-04-15 13:14:57 +02:00
Dmitriy ab5751553c add tracked-instance 2024-04-15 13:14:27 +02:00
Tom Österlund 7e111fc96e Add Schedule-X 2024-04-15 13:14:15 +02:00
Leo 100ff02275 Prokarman resume builder removed - broken link
According [archive.org](https://web.archive.org/web/20201002112448/https://prokarman.com/) October 2020 was the last time it was captured live.
2024-04-15 13:14:01 +02:00
Abdullah Uğraşkan c517ffee5c feat: add new tutorial 2024-04-15 13:13:34 +02:00
Rofix 70441085bf feat: add css-3d-progress 2024-04-15 13:12:55 +02:00
Saanvi Sen 55323d48cc Added Vue CheatSheet 2024-04-15 13:11:23 +02:00
Voyage a67fbb9555
Merge branch 'vuejs:master' into master 2023-07-22 22:39:22 +03:00
Voyage e592bfedd3
Create dummy.vue 2023-03-26 19:17:30 +03:00
2 changed files with 26 additions and 1 deletions

View File

@ -213,7 +213,6 @@
- [Vue.js Jobs - VueJobs](https://vuejobs.com/) - A Vue.js job portal to hire or get hired for all your Vue.js jobs.
- [Vue.js Interview Questions](https://github.com/sudheerj/vuejs-interview-questions) - A List of 300 VueJS Interview Questions and Answers
- [Prokarman Resume Builder](https://prokarman.com/) - A Free Resume Builder for crafting resumes for your dream job.
### Community
@ -490,6 +489,7 @@
- [Developing a web application with Vue.js 3 and Vite.js (French)](https://mickael-baron.fr/web/vuejs-miseenoeuvre-part2) par Mickael Baron
- [Deploying a web application powered by Vue.js 3 with Docker (French)](https://mickael-baron.fr/web/vuejs-deploiement-part3) par Mickael Baron
- [Advantages of Vue.js over React, Angular, and other frameworks in Turkish](https://medium.com/@dev.isasari/vuejsin-react-ve-angular-a-g%C3%B6re-avantajlar%C4%B1-6fe1d653beb1) by İsa Sarı
- [Türkçe Vue 3 Dersleri](https://www.youtube.com/playlist?list=PLf-6qk7szL-J4a7xaGf2TbW0p_cGbeMe7) on Youtube by Abdullah Uğraşkan
### Examples
@ -1396,6 +1396,7 @@ _Loaders / spinners / progress bars — Let the user know that something is load
- [uspin](https://github.com/peterroe/uspin) - A vue3 component that adds a spin mask at load time.🔄
- [vue-img-lazy-tiny](https://github.com/peterroe/vue-img-lazy-tiny) - A vue3 directive that provide a shield while loading.
- [vue3-ui-preloader](https://github.com/gbast0s/vue3-ui-preloader) - Vue3 Pre Loader components for vue.js projects with playground.
- [vue-default-page](https://github.com/zero-one-code/vue-default-page) - A Vue 3.0 plugin with built-in v-loading, v-skeleton, v-error and v-empty custom directives.
##### Progress Bar
@ -1415,6 +1416,7 @@ _A slim progress bar at the top of the page_
- [vue-ins-progress-bar](https://github.com/meloalright/vue-ins-progress-bar) - A Vue component of ins-style progress bar 一款 ins 风格的 vue 进度条组件
- [vue-next-progressbar](https://github.com/jambonn/vue-next-progressbar) - Slim progress bars(1KB gzipped) for Vue 3.
- [vue3-progress](https://github.com/marcoschulte/vue3-progress) - Fully customizable vue3 plugin to display a progress bar while waiting for something, e.g. http requests
- [css-3d-progress](https://github.com/rofixro/css-3d-progress) - A 3D progress bar component written using web Components, supports Vue, React and Svelte.
#### Tooltip
@ -1713,6 +1715,7 @@ _Display non-editable events in a Calendar_
- [vue-datepicker-ui](https://github.com/edisdev/vue-datepicker-ui) - A datepicker component for vue.js
- [vue-tailwind-datepicker](https://github.com/elreco/vue-tailwind-datepicker) - A Vue 3 Datepicker using Tailwind CSS 3
- [qalendar](https://github.com/tomosterlund/qalendar) - An event calendar and datepicker for Vue 3
- [schedule-x](https://github.com/schedule-x/schedule-x) - A material design event calendar. Customizable, light- and dark modes & multilingual.
#### Map
@ -2714,6 +2717,7 @@ _Handling of user events (scroll, click, key strike, ...)_
- [Reforms.js](https://github.com/empla/reforms) - Vue 3 and Bootstrap forms and cards generator. Validation, multiple fields, grouping, schema and more.
- [FormKit](https://github.com/formkit/formkit) - Vue 3 form development. 10x faster. Form inputs, validation, submission, error handling, generation, accessibility, theming, and more.
- [vrf](https://github.com/dimailn/vrf) - Declarative scalable ui-agnostic markup-based Vue forms.
- [tracked-instance](https://github.com/rudnik275/tracked-instance) - Build large forms and track all changes.
##### Validation
@ -3530,6 +3534,7 @@ _Create documentation_
- [vuese](https://github.com/vuese/vuese) - One-stop solution for vue component documentation.
- [vue-dotmd-loader](https://github.com/mengdu/vue-dotmd-loader) - A webpack loader for loader markdown file transform to vue file.
- [vue-tut](https://github.com/evwt/vue-tut) - Easily build beautiful tutorials with Vue.
- [Vue Cheatsheet](https://vue-cheatsheet.themeselection.com/) - The only Vue cheatsheet you will ever need
#### Test

20
dummy.vue Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello World in Vue</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<p>{{ message }}</p>
</div>
<script>
new Vue({
el: '#app',
data: {
message: 'Hello World!'
}
});
</script>
</body>
</html>