Skip to content
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
bfd6190
Добавлены бэктики
Alex-Sokolov May 22, 2017
63a3673
routing.md исправлен пример
Alex-Sokolov May 22, 2017
5b07856
data.md исправлен пример
Alex-Sokolov May 22, 2017
dfba0d6
data.md добавлены бэктики
Alex-Sokolov May 27, 2017
903e188
Merge branch 'master' of https://github.com/translation-gang/vue-ssr-…
Alex-Sokolov Jun 27, 2017
719cce0
Merge remote-tracking branch 'upstream/master'
Alex-Sokolov Jun 27, 2017
d9df311
data.md исправление
Alex-Sokolov Jun 27, 2017
0d59a03
Merge remote-tracking branch 'upstream/master'
Alex-Sokolov Jun 30, 2017
ec41ef3
universal.md правка
Alex-Sokolov Jun 30, 2017
fa8c52a
universal.md правка
Alex-Sokolov Jun 30, 2017
d9d7939
Merge remote-tracking branch 'upstream/master'
Alex-Sokolov Jul 20, 2017
5682041
api.md опечатка
Alex-Sokolov Jul 20, 2017
3d7ef5c
structure.md опечатка
Alex-Sokolov Jul 20, 2017
95a764d
head.md исправлен пример
Alex-Sokolov Sep 11, 2017
a7b83ad
README.md исправлена ссылка на HTTPS
Alex-Sokolov Sep 13, 2017
f0a69c7
Merge branch 'master' of https://github.com/translation-gang/vue-ssr-…
Alex-Sokolov Sep 13, 2017
18e3c00
Merge remote-tracking branch 'upstream/master'
Alex-Sokolov Sep 20, 2017
4245052
caching.md правка
Alex-Sokolov Sep 20, 2017
1d72ba6
Merge remote-tracking branch 'upstream/master'
Alex-Sokolov Oct 14, 2017
06c3439
api.md новые правки к 2.5.0
Alex-Sokolov Oct 14, 2017
1fbb67f
basic.md добавлен новый пример для 2.5.0
Alex-Sokolov Oct 14, 2017
dece395
non-node.md добавлен новый раздел
Alex-Sokolov Oct 14, 2017
0c2bfe4
README.md добавлена ссылка на новый раздел
Alex-Sokolov Oct 14, 2017
411015b
SUMMARY.md добавлена ссылка на новый раздел в оглавление
Alex-Sokolov Oct 14, 2017
babdc95
non-node.md допереведен комментарий
Alex-Sokolov Oct 14, 2017
b2e0e5d
hydration.md новые правки
Alex-Sokolov Oct 18, 2017
fa181fd
non-node.md мелкие правки
Alex-Sokolov Oct 18, 2017
33aa740
Merge remote-tracking branch 'upstream/master'
Alex-Sokolov Oct 18, 2017
f043061
Merge remote-tracking branch 'upstream/master'
Alex-Sokolov Oct 19, 2017
2e448d0
basic.md правка примера
Alex-Sokolov Oct 19, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ru/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ renderer.renderToString(app, (err, html) => {
})

// с версии 2.5.0+, возвращает Promise если коллбэк не указан:
renderer.renderToString.then(html => {
renderer.renderToString(app).then(html => {
console.log(html)
}).catch(err => {
console.error(err)
Expand Down