mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 15:29:26 +00:00
Macros View, currently only occupied by the Macro Recorder.
This commit is contained in:
parent
d1058dfc17
commit
6b2402a7d7
1 changed files with 24 additions and 2 deletions
|
|
@ -1,9 +1,31 @@
|
|||
<template>
|
||||
<div></div>
|
||||
<div id="macros" class="panel">
|
||||
<h1>Macros</h1>
|
||||
<MacroRecorder />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup></script>
|
||||
<script setup>
|
||||
import MacroRecorder from '../components/macros/MacroRecorder.vue'
|
||||
import { onMounted, ref } from 'vue'
|
||||
|
||||
const recordMacro = ref(false)
|
||||
|
||||
const macroInput = ref(null)
|
||||
|
||||
onMounted(() => {
|
||||
// macroInput.value.focus()
|
||||
})
|
||||
|
||||
const keyDown = (e) => {
|
||||
console.log(e)
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
@reference "@/assets/main.css";
|
||||
|
||||
input {
|
||||
@apply border rounded-md bg-white/10 p-2;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue