|
|
il y a 4 ans | |
|---|---|---|
| .. | ||
| dist | il y a 4 ans | |
| LICENSE | il y a 4 ans | |
| README.md | il y a 4 ans | |
| index.js | il y a 4 ans | |
| package.json | il y a 4 ans | |
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)
})()