Evan You 848d9ce2ea release: v3.0.0-rc.5 5 лет назад
..
__tests__ 5c74243211 test: move mockWarn into setup files 5 лет назад
src b9595e64cf feat: ssr support for `<style vars>` 6 лет назад
LICENSE 34989ef7fe chore: license 6 лет назад
README.md 8f463b3859 chore: readme 6 лет назад
api-extractor.json c9bf7ded2e refactor(types): mark internal API exports and exclude from d.ts 6 лет назад
index.js e05673f4d3 refactor: rename packages 7 лет назад
package.json 848d9ce2ea release: v3.0.0-rc.5 5 лет назад

README.md

@vue/server-renderer

const { createSSRApp } = require('vue')
const { renderToString } = require('@vue/server-renderer')

const app = createSSRApp({
  data: () => ({ msg: 'hello' }),
  template: `<div>{{ msg }}</div>`
})

;(async () => {
  const html = await renderToString(app)
  console.log(html)
})()