<!-- Please don't delete this template or we'll close your issue --> <!-- Before creating an issue please make sure you are using the latest version of VuePress. --> <!-- Please confirm you will submit an issue. --> <!-- Issues which contain questions or support requests will be closed. --> <!-- (Update "[ ]" to "[x]" to check a box) --> - [x] I confirm that this is an issue rather than a question. <!-- Please ask questions via following several ways. --> <!-- https://vue-land.js.org/ --> <!-- https://forum.vuejs.org/ --> <!-- https://stackoverflow.com/questions/ask?tags=vuepress --> ## Bug report #### Version 1.0.0-alpha.44 #### Steps to reproduce I have a `serverPrefetch` method in a component. When building dist, the method is properly called and the component work. When using dev server, the method seems to be not called. ```js async serverPrefetch() { this.foo = await fetchData(); }, ``` Thanks. Matt'