12345678910111213141516171819202122232425262728293031323334353637383940 |
- <script lang="ts">
- import { ref, defineComponent, reactive, toRefs, watch, onMounted } from "vue";
- import useProjectStore from "@/store/useProjectStore";
- export default defineComponent({
- setup() {
- const projectStore = useProjectStore();
- onMounted(() => {
-
-
-
-
-
- });
- watch(projectStore.$state, (nstate, ostate) => {
-
-
- });
- },
- });
- </script>
- <template>
- <router-view></router-view>
- </template>
- <style scoped lang="scss">
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-
- // background: #f3fdff;
- // text-align: center;
- // color: #2c3e50;
- // margin-top: 60px;
- }
- </style>
|