This commit is contained in:
nasir@endelospay.com
2024-06-06 00:41:41 +05:00
parent 83459a1ea8
commit f216ff713c
8 changed files with 563 additions and 69 deletions

View File

@@ -1,7 +1,7 @@
<script setup>
import Shepherd from 'shepherd.js'
import { withQuery } from 'ufo'
import { useConfigStore } from '@core/stores/config'
import { useConfigStore } from '@core/stores/config';
import Shepherd from 'shepherd.js';
import { withQuery } from 'ufo';
defineOptions({
// 👉 Is App Search Bar Visible
@@ -133,11 +133,11 @@ const noDataSuggestions = [
params: { tab: 'account' },
},
},
{
title: 'Pricing Page',
icon: 'ri-cash-line',
url: { name: 'pages-pricing' },
},
// {
// title: 'Pricing Page',
// icon: 'ri-cash-line',
// url: { name: 'pages-pricing' },
// },
]
const searchQuery = ref('')

View File

@@ -30,15 +30,15 @@ const logout = async () => {
const userProfileList = [
{ type: 'divider' },
{
type: 'navItem',
icon: 'ri-user-line',
title: 'Profile',
to: {
name: 'apps-user-view-id',
params: { id: 21 },
},
},
// {
// type: 'navItem',
// icon: 'ri-user-line',
// title: 'Profile',
// to: {
// name: 'apps-user-view-id',
// params: { id: 21 },
// },
// },
{
type: 'navItem',
icon: 'ri-settings-4-line',
@@ -48,32 +48,32 @@ const userProfileList = [
params: { tab: 'account' },
},
},
{
type: 'navItem',
icon: 'ri-file-text-line',
title: 'Billing Plan',
to: {
name: 'pages-account-settings-tab',
params: { tab: 'billing-plans' },
},
badgeProps: {
color: 'error',
content: '4',
},
},
{ type: 'divider' },
{
type: 'navItem',
icon: 'ri-money-dollar-circle-line',
title: 'Pricing',
to: { name: 'pages-pricing' },
},
{
type: 'navItem',
icon: 'ri-question-line',
title: 'FAQ',
to: { name: 'pages-faq' },
},
// {
// type: 'navItem',
// icon: 'ri-file-text-line',
// title: 'Billing Plan',
// to: {
// name: 'pages-account-settings-tab',
// params: { tab: 'billing-plans' },
// },
// badgeProps: {
// color: 'error',
// content: '5',
// },
// },
// { type: 'divider' },
// {
// type: 'navItem',
// icon: 'ri-money-dollar-circle-line',
// title: 'Pricing',
// to: { name: 'pages-pricing' },
// },
// {
// type: 'navItem',
// icon: 'ri-question-line',
// title: 'FAQ',
// to: { name: 'pages-faq' },
// },
{ type: 'divider' },
]
</script>