refactor(ssr): prefix ssr helpers

This commit is contained in:
Evan You
2020-02-06 12:07:25 -05:00
parent f3e70b3733
commit bc8f91d181
16 changed files with 256 additions and 136 deletions

View File

@@ -0,0 +1,5 @@
import { escapeHtml, toDisplayString } from '@vue/shared'
export function ssrInterpolate(value: unknown): string {
return escapeHtml(toDisplayString(value))
}