vue.ts 168 B

123456789101112
  1. import { createApp } from "vue";
  2. import * as Vuex from "../index";
  3. const store = new Vuex.Store({
  4. state: {
  5. value: 1
  6. }
  7. });
  8. const app = createApp({
  9. store
  10. });