fix: using alias path instead of relative path
This commit is contained in:
parent
ce900ec8ac
commit
b9e8cdf5ed
@ -27,7 +27,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Dropdown, Avatar, FeatherIcon } from 'frappe-ui'
|
import { Dropdown, Avatar, FeatherIcon } from 'frappe-ui'
|
||||||
import { sessionStore } from '@/stores/session'
|
import { sessionStore } from '@/stores/session'
|
||||||
import { usersStore } from '../stores/users';
|
import { usersStore } from '@/stores/users';
|
||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
|
|
||||||
const { logout } = sessionStore()
|
const { logout } = sessionStore()
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import ListView from '../components/ListView.vue'
|
import ListView from '@/components/ListView.vue'
|
||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
import { createListResource } from 'frappe-ui'
|
import { createListResource } from 'frappe-ui'
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import ListView from '../components/ListView.vue';
|
import ListView from '@/components/ListView.vue';
|
||||||
|
|
||||||
const list_details = {
|
const list_details = {
|
||||||
title: 'Deals',
|
title: 'Deals',
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import ListView from '../components/ListView.vue';
|
import ListView from '@/components/ListView.vue';
|
||||||
|
|
||||||
const list_details = {
|
const list_details = {
|
||||||
title: 'Inbox',
|
title: 'Inbox',
|
||||||
|
|||||||
@ -121,9 +121,9 @@ import {
|
|||||||
Dropdown,
|
Dropdown,
|
||||||
} from 'frappe-ui'
|
} from 'frappe-ui'
|
||||||
import { TransitionPresets, useTransition } from '@vueuse/core'
|
import { TransitionPresets, useTransition } from '@vueuse/core'
|
||||||
import { usersStore } from '../stores/users'
|
import { usersStore } from '@/stores/users'
|
||||||
import { ref, computed } from 'vue'
|
import { ref, computed } from 'vue'
|
||||||
import Breadcrumbs from '../components/Breadcrumbs.vue'
|
import Breadcrumbs from '@/components/Breadcrumbs.vue'
|
||||||
|
|
||||||
const { getUser } = usersStore()
|
const { getUser } = usersStore()
|
||||||
|
|
||||||
|
|||||||
@ -3,10 +3,10 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import ListView from '../components/ListView.vue'
|
import ListView from '@/components/ListView.vue'
|
||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
import { createListResource } from 'frappe-ui'
|
import { createListResource } from 'frappe-ui'
|
||||||
import { usersStore } from '../stores/users'
|
import { usersStore } from '@/stores/users'
|
||||||
|
|
||||||
const list_details = {
|
const list_details = {
|
||||||
title: 'Leads',
|
title: 'Leads',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user