Skip to content

Commit 36d8cac

Browse files
committed
Organize files
1 parent 3350b11 commit 36d8cac

File tree

4 files changed

+174
-158
lines changed

4 files changed

+174
-158
lines changed

docs/.vuepress/config.js

+25-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,30 @@ module.exports = {
55
serviceWorker: true,
66
themeConfig: {
77
displayAllHeaders: true,
8-
nav: [{ text: 'Home', link: '/' }, { text: 'Docs', link: '/patterns/' }],
9-
sidebar: ['/patterns/'],
8+
lastUpdated: 'Last Updated',
9+
repo: 'learn-vuejs/vue-patterns',
10+
editLinks: true,
11+
nav: [
12+
{ text: 'Home', link: '/' },
13+
{ text: 'Docs', link: '/patterns/' },
14+
{
15+
text: 'Translations',
16+
items: [
17+
{
18+
text: '简体中文',
19+
link: 'https://github.com/ZYSzys/vue-patterns-cn',
20+
},
21+
{
22+
text: '繁體中文',
23+
link: 'https://github.com/yoyoys/vue-patterns-cht',
24+
},
25+
],
26+
},
27+
],
28+
sidebar: [
29+
['/patterns/', 'Patterns'],
30+
['/useful-links/', 'Useful Links'],
31+
['/translations/', 'Translations'],
32+
],
1033
},
1134
};

docs/patterns/README.md

+1-156
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
# vue-patterns
2-
3-
## Translations
4-
5-
- [简体中文](https://github.com/ZYSzys/vue-patterns-cn)
6-
- [繁體中文](https://github.com/yoyoys/vue-patterns-cht)
7-
81
## Component Declaration
92

103
### [Single File Component (a.k.a. SFC)](https://vuejs.org/v2/guide/single-file-components.html) - Most Common
@@ -854,6 +847,7 @@ You can also use [vue-property-decorator](https://github.com/kaorun343/vue-prope
854847
<<< @/docs/.vuepress/components/ThemeProvider.vue
855848

856849
#### ThemeButton.vue
850+
857851
<<< @/docs/.vuepress/components/ThemeButton.vue
858852

859853
```vue
@@ -921,155 +915,6 @@ watch: {
921915
}
922916
```
923917

924-
## Useful Links
925-
926-
### Style Guide
927-
928-
- [Official - Style Guide](https://vuejs.org/v2/style-guide/)
929-
- [Vue.js Component Style Guide](https://github.com/pablohpsilva/vuejs-component-style-guide)
930-
931-
### Refactoring
932-
933-
- [Refactoring Vue: Cleaning Up a List of Posts With Better Component Splitting and More ES6](https://mattstauffer.com/blog/refactoring-vue-cleaning-up-a-list-of-posts-with-better-component-splitting-and-more-es6/?utm_campaign=Revue%20newsletter&utm_medium=Newsletter&utm_source=Vue.js%20Feed)
934-
- [Clean up your Vue modules with ES6 Arrow Functions](https://gist.github.com/JacobBennett/7b32b4914311c0ac0f28a1fdc411b9a7)
935-
- [Examples of Vue’s Clean Code](https://webdesign.tutsplus.com/tutorials/examples-of-vues-clean-code--cms-29619)
936-
- [Optimizing Performance with Computed Properties](https://codingexplained.com/coding/front-end/vue-js/optimizing-performance-computed-properties)
937-
- [Simplify Your Components with Computed Setters](https://tahazsh.com/vuebyte-computed-setters)
938-
939-
### State Management
940-
941-
- [Managing State in Vue.js](https://medium.com/fullstackio/managing-state-in-vue-js-23a0352b1c87)
942-
943-
### Vuex
944-
945-
- [Decouple Vuex modules with the Mediator pattern](https://itnext.io/decouple-vuex-actions-with-the-mediator-pattern-58a8879de1b4)
946-
- [Vuex getters are great, but don’t overuse them](https://codeburst.io/vuex-getters-are-great-but-dont-overuse-them-9c946689b414)
947-
- [Reusable Vuex Mutation Functions](https://itnext.io/reusable-vuex-mutation-functions-9b4920aa737b)
948-
- [A pattern to handle ajax requests in Vuex](https://medium.com/@lachlanmiller_52885/a-pattern-to-handle-ajax-requests-in-vuex-2d69bc2f8984)
949-
- [[vuex Mutations] Single Changes vs. Single Responsibility](https://forum.vuejs.org/t/vuex-mutations-single-changes-vs-single-responsibility/16396)
950-
- [Components and How They Interact in Vue and Vuex](https://dzone.com/articles/how-do-components-interact-in-vue-and-what-is-vuex)
951-
- [Why VueX Is The Perfect Interface Between Frontend and API](https://codeburst.io/why-vuex-is-the-perfect-interface-between-frontend-and-api-271d92161709)
952-
- [Composing actions with Vuex](https://codeburst.io/composing-actions-with-vuex-b63466264a37)
953-
- [How to Build Complex, Large-Scale Vue.js Apps With Vuex](https://code.tutsplus.com/tutorials/how-to-build-complex-large-scale-vuejs-applications-with-vuex--cms-30952)
954-
- [Should I Store This Data in Vuex?](https://markus.oberlehner.net/blog/should-i-store-this-data-in-vuex/)
955-
- [Anyway, this is how to use v-model with Vuex. Computed setter in action.](https://itnext.io/anyway-this-is-how-to-use-v-model-with-vuex-computed-setter-in-action-320eb682c976)
956-
- [5 Vuex Plugins For Your Next VueJS Project](https://medium.com/js-dojo/5-vuex-plugins-for-your-next-vuejs-project-df9902a70de2)
957-
- [Writing Vuex modules in neat Typescript classes](https://medium.com/coding-blocks/writing-vuex-modules-in-neat-typescript-classes-9bf7b505e7b5)
958-
959-
### Mobx
960-
961-
- [Build A View-Framework-Free Data Layer Based on MobX — Integration With Vue (1)](https://itnext.io/build-a-view-framework-free-data-layer-based-on-mobx-integration-with-vue-1-8b524b86c7b8)
962-
963-
### Renderless Component
964-
965-
- [Renderless Components in Vue.js](https://adamwathan.me/renderless-components-in-vuejs/)
966-
- [Building Renderless Components to Handle CRUD Operations in Vue.js](https://markus.oberlehner.net/blog/building-renderless-components-to-handle-crud-operations-in-vue/)
967-
- [Building “Renderless” Vue Components](https://css-tricks.com/building-renderless-vue-components/)
968-
969-
#### Examples
970-
971-
- [Renderless Calendar component](https://codesandbox.io/s/v65lx0xvy5)
972-
973-
### Folder Structure
974-
975-
- [How you can improve your workflow using the JavaScript console](https://medium.freecodecamp.org/how-you-can-improve-your-workflow-using-the-javascript-console-bdd7823a9472)
976-
- [How to Structure a Vue.js Project](https://itnext.io/how-to-structure-a-vue-js-project-29e4ddc1aeeb)
977-
- [Large-scale Vuex application structures](https://medium.com/3yourmind/large-scale-vuex-application-structures-651e44863e2f)
978-
- [Vue.js Application Structure and CSS Architecture](https://markus.oberlehner.net/blog/vue-application-structure-and-css-architecture/)
979-
980-
### Tips & Tricks
981-
982-
- [How To Build Vue Components Like A Pro 😎](https://blog.bitsrc.io/how-to-build-vue-components-like-a-pro-fd89fd4d524d)
983-
- [Four tips for working with Vue.js](https://itnext.io/four-tips-for-working-with-vue-js-b362d97de852)
984-
- [Tips from a Lowly VueJS Developer](https://medium.com/@denny.headrick/tips-from-a-lowly-vuejs-developer-381b6956aece)
985-
- [Throttling and Debouncing Events with Vue.js and lodash](https://alligator.io/vuejs/lodash-throttle-debounce/)
986-
- [Are partially applied functions in event handlers possible?](https://forum.vuejs.org/t/are-partially-applied-functions-in-event-handlers-possible/10187)
987-
- [Vue.js — Considerations and Tricks](https://blog.webf.zone/vue-js-considerations-and-tricks-fa7e0e4bb7bb)
988-
- [Six random issues and their solutions in VueJS.](https://medium.com/@stijlbreuk/six-random-issues-and-their-solutions-in-vuejs-b16d470a6462)
989-
- [When VueJS Can't Help You](https://vuejsdevelopers.com/2017/05/01/vue-js-cant-help-head-body/)
990-
- [Things that won’t work using Vue](https://winnercrespo.com/things-that-wont-work-using-vue/)
991-
- [Tip#15 Delay execution with \_.debounce](https://medium.com/vuejs-tips/tip-15-delay-execution-with-debounce-6a93b759bb06)
992-
- [Handling API calls in Vue](https://medium.com/@imanhodjaev/handling-api-calls-in-vue-cf39747656ba)
993-
- [Slide - Vue & REST API Patterns](https://speakerdeck.com/imanhodjaev/vue-and-rest-api-patterns)
994-
995-
### Router
996-
997-
- [Navigation Guards - Official](https://router.vuejs.org/guide/advanced/navigation-guards.html#global-guards)
998-
- [Vue Router Navigation Guards with Vuex](https://serversideup.net/vue-router-navigation-guards-vuex/)
999-
1000-
### Anti Patterns
1001-
1002-
- [Chris Fritz - Vue.js Anti-Patterns (and How to Avoid Them)](http://www.fullstackradio.com/87)
1003-
- [Common mistakes to avoid while working with Vue.js](https://medium.freecodecamp.org/common-mistakes-to-avoid-while-working-with-vue-js-10e0b130925b)
1004-
- [Avoid This Common Anti-Pattern In Full-Stack Vue/Laravel Apps](https://vuejsdevelopers.com/2017/08/06/vue-js-laravel-full-stack-ajax/)
1005-
- [[Video] - VueNYC - Three Vue code smells, and what you can do about them - Matt Rothenberg (@mattrothenberg)](https://www.youtube.com/watch?v=z5UWVOeIsUQ)
1006-
1007-
### Videos / Audios
1008-
1009-
- [81: Evan You - Advanced Vue Component Design](https://player.fm/series/series-1401837/81-evan-you-advanced-vue-component-design)
1010-
- [7 Secret Patterns Vue Consultants Don’t Want You to Know](https://www.youtube.com/watch?v=7YZ5DwlLSt8)
1011-
1012-
### Repos
1013-
1014-
- [vue-enterprise-boilerplate](https://github.com/chrisvfritz/vue-enterprise-boilerplate)
1015-
- [7-secret-patterns](https://github.com/chrisvfritz/7-secret-patterns)
1016-
- [Vue.js-2-Design-Patterns-and-Best-Practices](https://github.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices)
1017-
1018-
### Paid
1019-
1020-
- [Advanced Vue Component Design](https://adamwathan.me/advanced-vue-component-design/)
1021-
- [Advanced Vue.js Features from the Ground Up](https://frontendmasters.com/courses/advanced-vue/)
1022-
1023-
### Typescript
1024-
1025-
- [Vue + TypeScript: A Match Made in Your Code Editor](https://css-tricks.com/vue-typescript-a-match-made-in-your-code-editor/)
1026-
- [Writing Class-Based Components with Vue.js and TypeScript](https://alligator.io/vuejs/typescript-class-components/)
1027-
- [Writing Vuex modules in neat Typescript classes](https://medium.com/coding-blocks/writing-vuex-modules-in-neat-typescript-classes-9bf7b505e7b5)
1028-
1029-
### Flowtype
1030-
1031-
### GraphQL
1032-
1033-
- [Basics of GraphQL with Vue.js](https://medium.com/@lachlanmiller_52885/graphql-basics-and-practical-examples-with-vue-6b649b9685e0)
1034-
1035-
---
1036-
1037-
### Misc
1038-
1039-
- [Creating an Interpose Vue component from a React implementation](https://itnext.io/creating-an-interpose-vue-component-from-a-react-implementation-80d367a695c6)
1040-
- [Composing computed properties in Vue.js](https://medium.com/@kevin_peters/composing-computed-properties-in-vue-js-87b4507af079)
1041-
- [4 AJAX Patterns For Vue.js Apps](https://medium.com/js-dojo/4-ajax-patterns-for-vue-js-apps-add915fc9168)
1042-
- [3 Code Splitting Patterns For VueJS and Webpack](https://medium.com/js-dojo/3-code-splitting-patterns-for-vuejs-and-webpack-b8fff1ea0ba4)
1043-
- [The easiest way to improve your Vue.js application. Part 1](https://codeburst.io/the-easiest-way-to-improve-your-vue-js-application-part-1-51f068652872)
1044-
- [Using JSX with Vue and Why You Should Care](https://scotch.io/tutorials/using-jsx-with-vue-and-why-you-should-care?utm_campaign=Revue%20newsletter&utm_medium=Newsletter&utm_source=Vue.js%20News)
1045-
- [Compound components](https://forum.vuejs.org/t/compound-components/30139)
1046-
- [Creating Multi-root Vue.js Components](https://zendev.com/2018/05/07/multi-root-vue-components.html)
1047-
- [Understanding Vue.js Reactivity in Depth with Object.defineProperty()](https://www.timo-ernst.net/blog/2017/07/26/understanding-vue-js-reactivity-depth-object-defineproperty/)
1048-
- [Templating in Vue: Separation of Concerns or Separation of Technology or something else?](https://medium.com/@s.molinari/templating-separation-of-concerns-or-separation-of-technology-or-something-else-123a3d41f0b4)
1049-
- [Stashing Vue components data](https://medium.com/@kelin2025/components-stash-f2e14603a874)
1050-
- [Creating Reusable Transitions in Vue](https://vuejsdevelopers.com/2018/02/26/vue-js-reusable-transitions/)
1051-
- [vue-advanced-workshop](https://github.com/d-levin/vue-advanced-workshop)
1052-
- [Do it with Elegance: How to Create Data-Driven User Interfaces in Vue](https://blog.rangle.io/how-to-create-data-driven-user-interfaces-in-vue/)
1053-
- [Creating Vue.js Component Instances Programmatically](https://css-tricks.com/creating-vue-js-component-instances-programmatically/)
1054-
- [Managing User Permissions in a Vue.js App](https://dzone.com/articles/managing-user-permissions-in-a-vuejs-app)
1055-
- [Render Functional Components in Vue.js](https://alligator.io/vuejs/render-functional-components/)
1056-
- [Looping through Object Properties](https://codingexplained.com/coding/front-end/vue-js/looping-object-properties)
1057-
- [Cancelling async operations in Vue.js](https://codeburst.io/cancelling-async-operations-in-vue-js-3d0f3c2de598)
1058-
- [Scoped styles with v-html](https://medium.com/@brockreece/scoped-styles-with-v-html-c0f6d2dc5d8e)
1059-
- [Pagination With Vuejs](https://medium.com/@obapelumi/pagination-with-vuejs-1f505ce8d15b)
1060-
- [What does the ‘h’ stand for in Vue’s render method?](https://css-tricks.com/what-does-the-h-stand-for-in-vues-render-method/)
1061-
- [How To Build Vue Components That Play Nice](https://vuejsdevelopers.com/2018/06/18/vue-components-play-nicely/)
1062-
- [Making responsive Vue components with ResizeObserver](https://itnext.io/making-adaptive-vue-components-with-resizeobserver-123b5ebb20ae)
1063-
- [An imperative guide to forms in Vue.js](https://blog.logrocket.com/an-imperative-guide-to-forms-in-vue-js-7536bfa374e0)
1064-
- [Vue.js: the good, the meh, and the ugly](https://medium.com/@Pier/vue-js-the-good-the-meh-and-the-ugly-82800bbe6684)
1065-
- [Dynamic Vue.js Layout Components](https://markus.oberlehner.net/blog/dynamic-vue-layout-components/)
1066-
- [Advanced Vue.js concepts: mixins, custom directives, filters, transitions, and state management](https://blog.logrocket.com/advanced-vue-js-concepts-mixins-custom-directives-filters-transitions-and-state-management-ca6955905156)
1067-
- [Introducing the Single Element Pattern](https://medium.freecodecamp.org/introducing-the-single-element-pattern-dfbd2c295c5d)
1068-
- [Control DOM Outside Your Vue.js App with portal-vue](https://alligator.io/vuejs/portal-vue/)
1069-
- [Add i18n and manage translations of a Vue.js powered website](https://medium.com/hypefactors/add-i18n-and-manage-translations-of-a-vue-js-powered-website-73b4511ca69c)
1070-
- [Managing Complex Waiting Experiences on Web UIs](https://medium.com/@fkadev/managing-complex-waiting-experiences-on-web-uis-29534d2d92a8)
1071-
- [Vue.js — Forms, components and considerations](https://blog.webf.zone/vue-js-forms-components-and-considerations-d81b3ffe9efb)
1072-
1073918
## Fullstack Vue Book
1074919

1075920
[![Fullstack Vue Book](https://www.fullstack.io/assets/images/vue-github.png)](https://gumroad.com/a/462206067)

docs/translations/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- [简体中文](https://github.com/ZYSzys/vue-patterns-cn)
2+
- [繁體中文](https://github.com/yoyoys/vue-patterns-cht)

0 commit comments

Comments
 (0)