fix: remove redundant aliases
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<script setup>
|
||||
import DashboardHighlightCard from "@/components/dashboard/DashboardHighlightCard.vue";
|
||||
import Delivery from "@/components/dashboard/Delivery.vue";
|
||||
import OrderStatus from "@/components/dashboard/OrderStatus.vue";
|
||||
import RevenueChart from "@/components/dashboard/RevenueChart.vue";
|
||||
import TopCustomers from "@/components/dashboard/TopCustomers.vue";
|
||||
import TopProducts from "@/components/dashboard/TopProducts.vue";
|
||||
import Warnings from "@/components/dashboard/Warnings.vue";
|
||||
import DashboardHighlightCard from "~/components/dashboard/DashboardHighlightCard.vue";
|
||||
import Delivery from "~/components/dashboard/Delivery.vue";
|
||||
import OrderStatus from "~/components/dashboard/OrderStatus.vue";
|
||||
import RevenueChart from "~/components/dashboard/RevenueChart.vue";
|
||||
import TopCustomers from "~/components/dashboard/TopCustomers.vue";
|
||||
import TopProducts from "~/components/dashboard/TopProducts.vue";
|
||||
import Warnings from "~/components/dashboard/Warnings.vue";
|
||||
|
||||
const highlights = [
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script setup>
|
||||
import DeliveryInteractive from "@/components/dashboard/DeliveryInteractive.vue";
|
||||
import Driver from "@/components/dashboard/Driver.vue";
|
||||
import DeliveryInteractive from "~/components/dashboard/DeliveryInteractive.vue";
|
||||
import Driver from "~/components/dashboard/Driver.vue";
|
||||
|
||||
const drivers = [
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup>
|
||||
import AvatarBox from "@/components/dashboard/AvatarBox.vue";
|
||||
import AvatarBox from "~/components/dashboard/AvatarBox.vue";
|
||||
|
||||
const props = defineProps({
|
||||
name: String,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup>
|
||||
import OrderStatusCard from "@/components/dashboard/OrderStatusCard.vue";
|
||||
import OrderStatusCard from "~/components/dashboard/OrderStatusCard.vue";
|
||||
|
||||
const statuses = [
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup>
|
||||
import AvatarBox from "@/components/dashboard/AvatarBox.vue";
|
||||
import AvatarBox from "~/components/dashboard/AvatarBox.vue";
|
||||
|
||||
const props = defineProps({
|
||||
name: String,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup>
|
||||
import TopCustomer from "@/components/dashboard/TopCustomer.vue";
|
||||
import TopCustomer from "~/components/dashboard/TopCustomer.vue";
|
||||
|
||||
const customers = [
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup>
|
||||
import TopProduct from "@/components/dashboard/TopProduct.vue";
|
||||
import TopProduct from "~/components/dashboard/TopProduct.vue";
|
||||
|
||||
const products = [
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup>
|
||||
import Warning from "@/components/dashboard/Warning.vue";
|
||||
import Warning from "~/components/dashboard/Warning.vue";
|
||||
|
||||
const warnings = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user