Vue-SSR-demo1
示例代码:
// server-entry.js
import Vue from 'vue';
import App from './component/List.vue';
const app = new Vue({
render(createElement){
return createElement(App, {props: {title: 'test'}});
}
});
// the default export should be a function
// which will receive the context of the render call
export default function (context) {
return new Promise((resolve, reject) => {
resolve(app);
});
};

浙公网安备 33010602011771号