29 lines
570 B
Vue
29 lines
570 B
Vue
<script setup lang="tsx">
|
|
|
|
import RAM from "@/components/expr1/RAM.vue";
|
|
import OperationTable from "@/components/expr1/OperationTable.vue";
|
|
import {provide} from "vue";
|
|
import {Ram} from "@/logical/expr1/ram.ts";
|
|
import ControlPanel from "@/components/expr1/ControlPanel.vue";
|
|
|
|
let ram = new Ram();
|
|
provide("ram", ram);
|
|
</script>
|
|
|
|
<template>
|
|
<control-panel/>
|
|
<RAM/>
|
|
<div id="operation-table">
|
|
<operation-table/>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="less">
|
|
#operations {
|
|
width: 690px;
|
|
}
|
|
|
|
#operation-table {
|
|
margin-top: 10px;
|
|
}
|
|
</style> |