JSFiddle - React, Tailwind, and code Playground
by kurotanshi
HTML
<script src="https://unpkg.com/vue@next"></script>
<script src="https://unpkg.com/vuex@next"></script>
<div id="app">
<h1>{{ message }}</h1>
</div>
JavaScript
const store = Vuex.createStore({
state: {
message: 'Hello'
},
});
const app = Vue.createApp({
store,
computed: {
message: () => store.state.message
}
}).mount('#app');