ui/src/pages/Scratch.vue

22 lines
653 B
Vue
Raw Normal View History

<script setup lang="ts">
import {MathPage} from '../support/page'
import {v4 as uuidv4} from 'uuid'
2022-04-09 17:58:31 +00:00
import Statement from '../components/Statement.vue'
2022-04-09 15:56:54 +00:00
import {MathStatement} from '../support/parse'
const page = new MathPage(uuidv4())
const stmt1Id = page.addRaw('x = y+3/4')
const stmt2Id = page.addRaw('y = 9')
const evaluation = page.evaluate()
2022-04-09 15:56:54 +00:00
const stmt = page.getStatement(stmt1Id)
console.log({page, stmt1Id})
2022-04-09 15:56:54 +00:00
const onEdit = (stmt: MathStatement) => () => console.log('edit', stmt)
</script>
<template>
<p>Scratch page for testing!</p>
2022-04-09 15:56:54 +00:00
<Statement v-if="stmt" :statement="stmt" :evaluation="evaluation"/>
</template>