feat: Contact history

This commit is contained in:
iamsivin
2024-11-06 17:51:03 +05:30
parent 7021e96ad4
commit db6f08c12b
9 changed files with 1108 additions and 2 deletions
+2
View File
@@ -2,6 +2,7 @@ import './design-system/histoire.scss';
import { defineSetupVue3 } from '@histoire/plugin-vue';
import i18nMessages from 'dashboard/i18n';
import { createI18n } from 'vue-i18n';
import { vResizeObserver } from '@vueuse/components';
import store from 'dashboard/store';
const i18n = createI18n({
@@ -13,4 +14,5 @@ const i18n = createI18n({
export const setupVue3 = defineSetupVue3(({ app }) => {
app.use(store);
app.use(i18n);
app.directive('resize', vResizeObserver);
});