# wechatapp **Repository Path**: wuingxiaozu/wechatapp ## Basic Information - **Project Name**: wechatapp - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Getting started ```bash # install editorconfig globally > npm install -g editorconfig ``` The stack is built using [vue-cli webpack](https://github.com/vuejs-templates/webpack) so to get started all you have to do is: ``` bash # install dependencies > yarn install # serve with hot reload at localhost:8080 > yarn serve ``` Other commands available are: ``` bash # build for production with minification yarn run build # run unit tests yarn test ``` ## To know Current arbitrary choices are: - Vuex modules for store - Vue-axios for ajax requests - 'rwv' as prefix for components These can be changed when the contributors reach a consensus. ## FAQ
Where can I find the service worker file?
The service worker file is generated automatically. The implementation can be found under [`src/registerServiceWorker.js`](https://github.com/gothinkster/vue-realworld-example-app/blob/eeaeb34fa440d00cd400545301ea203bd2a59284/src/registerServiceWorker.js). You can find the dependencies implementation in this repo: [yyx990803/register-service-worker](https://github.com/yyx990803/register-service-worker#readme).
Also, Google provided a good documentation on how to register a service worker: https://developers.google.com/web/fundamentals/primers/service-workers/registration
Vue.js Function API / Migration to Vue.js 3
Related resources:
- [Vue.js Function API RFC](https://github.com/vuejs/rfcs/blob/function-apis/active-rfcs/0000-function-api.md)
- [`vue-function-api` plugin](https://github.com/vuejs/vue-function-api)
Vue.js 3 will likely introduce breaking changes on how Vue.js applications will look like. For example, the Vue.js Function API might be introduced. This would cause a lot of our components to change in the overall structure. The changes would be minimal though. With the `vue-function-api` plugin, these changes could be applied already. The problem is that multiple integrations are not working with the plugin. There are intentions to make this work, but for the time being, we should rather focus on different areas. If you still want to be experimental with it, we are happy to get a Pull Request with some experimental feature implementations.