|
|
há 6 anos atrás | |
|---|---|---|
| .. | ||
| __tests__ | b26976b6d8 wip: fix tests | há 6 anos atrás |
| src | 8e30d0c74c types(server-renderer): export SSRContext type (#1199) | há 6 anos atrás |
| LICENSE | 34989ef7fe chore: license | há 6 anos atrás |
| README.md | 8f463b3859 chore: readme | há 6 anos atrás |
| api-extractor.json | c9bf7ded2e refactor(types): mark internal API exports and exclude from d.ts | há 6 anos atrás |
| index.js | e05673f4d3 refactor: rename packages | há 7 anos atrás |
| package.json | cf2f278f48 release: v3.0.0-beta.15 | há 6 anos atrás |
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)
})()