mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-02 19:04:04 +03:00
18 lines
400 B
HTML
18 lines
400 B
HTML
<!doctype html>
|
|
<html {{ htmlAttrs }}>
|
|
<head {{ headAttrs }}>
|
|
<title>Hello</title>
|
|
{{ head }}
|
|
<link rel="stylesheet" href="/global.css">
|
|
</head>
|
|
<body {{ bodyAttrs }}>
|
|
<div id="body-prepend">{{ bodyPrepend }}</div>
|
|
|
|
<a href="/">← Examples index</a>
|
|
<div id="app">{{ app }}</div>
|
|
|
|
<script src="/__build__/ssr.js"></script>
|
|
{{ bodyAppend }}
|
|
</body>
|
|
</html>
|