<h1>Hello {name}!</h1>

<script>
	export default {
		data: () => ({
			name: 'world'
		})
	};

	/*
		trailing multiline comment
	*/
</script>