Feature: Add Track Form #7

Merged
scott merged 5 commits from scott/kalkutago:feature/add-track-form into main 2023-06-25 19:25:59 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 55816a486a - Show all commits

View file

@ -1,8 +1,5 @@
<script setup lang="ts">
import Table from "./components/Table.vue";
import { state } from "./state";
state.populate()
</script>
<template>

View file

@ -1,6 +1,9 @@
import { createApp } from 'vue'
import './style.scss'
import App from './App.vue'
import { state } from "./state";
import 'bulma/css/bulma.css'
createApp(App).mount('#app')
state.populate()