跳到主要内容

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)
})()