<template>
<div>
<h1>{{ title }}</h1>
<p>{{ message }}</p>
</div>
</template>
<script setup>
import { ref } from ‘vue’
const title = ref(‘Welcome to Vapor Mode’)
const message = ref(‘This mode eliminates the virtual DOM for faster performance.’)
</script>
In Vapor Mode, you can opt-in at the component or application level, but specific setup instructions are still being finalized.