aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/vue/test/fixtures/app-entrypoint-relative/src/pages/index.astro
blob: 3240cbe0fd73a86cb1eb29f1480b9a1ce6d6577f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
import Foo from '../components/Foo.vue';
---

<html>
	<head>
		<title>Vue App Entrypoint</title>
	</head>
	<body>
		<Foo client:load />
	</body>
</html>