fix option passing

This commit is contained in:
Evan You 2017-03-27 19:58:17 +08:00
parent fae6b87786
commit 2fe42ef0c5
2 changed files with 4 additions and 1 deletions

View File

@ -103,6 +103,7 @@
"rollup-plugin-replace": "^1.1.0",
"rollup-watch": "^3.2.2",
"selenium-server": "^2.53.1",
"serialize-javascript": "^1.3.0",
"typescript": "^2.1.6",
"uglify-js": "^2.6.2",
"vue-ssr-html-stream": "^2.1.0",

View File

@ -22,7 +22,9 @@ export function createRenderer (options?: Object = {}): {
// component cache (optional)
cache: options.cache,
// page template (optional)
template: options.template
template: options.template,
// server/client build manifests (optional)
manifest: options.manifest
})
}