<p>{{foo}}</p>

<script>
	export default {
		data: () => ({
			foo: 1
		}),

		oncreate () {
			this.set({ foo: 2 });
		}
	};
</script>