v1
- by robbinbaauw 8/19/202000
disable setup HTML
Setup HTML
<script src="https://pastebin.com/raw/R3tzuc7G"></script>
disable setup JavaScript
Setup JavaScript
const { ref: vueRef, computed: vueComputed } = VueReactivity
const r1 = vueRef(1)
const c1 = vueComputed({
	get() {
		return r1.value * 2
	},
	set(v) {
		r1.value = v + 100
	}
})

const { ref: classRef, computed: classComputed } = VueReactivityRefClass
const r2 = classRef(1)
const c2 = classComputed({
	get() {
		return r2.value * 2
	},
	set(v) {
		r2.value = v + 100
	}
})
delete caserun single casemove downdrag and drop case


ready



c1.value
c1.value = c1.value + 1
c1.value


delete caserun single casemove updrag and drop case


ready



c2.value
c2.value = c2.value + 1
c2.value

Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN