Files
archived-chatwoot/app/javascript/widget/App.vue
Pranav Raj S 16fe912fbd [Feature] Website live chat (#187)
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com>
Co-authored-by: Sojan Jose <sojan@pepalo.com>
2019-10-29 12:50:54 +05:30

26 lines
391 B
Vue
Executable File

<template>
<div id="app" class="woot-widget-wrap">
<router-view />
</div>
</template>
<script>
import { mapActions } from 'vuex';
export default {
name: 'App',
methods: {
...mapActions('conversation', ['fetchOldConversations']),
},
mounted() {
this.fetchOldConversations();
},
};
</script>
<style lang="scss">
@import '~widget/assets/scss/woot.scss';
</style>