UNPKG

mixone

Version:

MixOne is a Node scaffolding tool implemented based on Vite, used for compiling HTML5, JavasCript, Vue, React and other codes. It supports packaging Web applications with multiple HTML entry points (BS architecture) and desktop installation packages (CS a

20 lines (15 loc) 237 B
import Vuex from 'vuex' import Vue from 'vue' Vue.use(Vuex) const state = { } const actions = { } const mutations = { } const store = new Vuex.Store({ actions, mutations, state }) export default store