|
|
hace 4 años | |
|---|---|---|
| .. | ||
| dist | hace 4 años | |
| LICENSE | hace 4 años | |
| README.md | hace 4 años | |
| index.js | hace 4 años | |
| package.json | hace 4 años | |
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)
})()