renderToString
2023年05月10日
一、认识
renderToString()
二、语法
import { createSSRApp } from 'vue'
import { renderToString } from 'vue/server-renderer'
const ctx = {}
const app = createSSRApp({
data: () => ({ msg: 'hello' }),
template: `<div>{{ msg }}</div>`
});
(async () => {
const html = await renderToString(app,ctx)
console.log(html)
})()