mirror of
https://github.com/lingble/chatwoot.git
synced 2026-03-20 03:52:43 +00:00
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
26 lines
391 B
Vue
Executable File
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>
|