soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
291 Bytes
<script>
import { mapState } from 'vuex'
export default {
computed: {
...mapState({
inited: state => state.inited,
}),
},
created() {
this.$store.commit('TEST_INIT')
},
}
</script>
<template>
<div id="init">
<p>Inited: {{ inited }}</p>
</div>
</template>