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

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

	// trailing line comment
</script>