fix: remove redundant aliases
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import PickDay from "@/components/datepicker/PickDay.vue";
|
||||
import PickDay from "~/components/datepicker/PickDay.vue";
|
||||
|
||||
const props = defineProps({
|
||||
record: Object,
|
||||
|
||||
@@ -18,11 +18,11 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import EventSummary from "@/components/datepicker/EventSummary";
|
||||
import EventSummary from "~/components/datepicker/EventSummary";
|
||||
export default {
|
||||
components: {
|
||||
EventSummary,
|
||||
//EventSummary: () => import('@/components/datepicker/EventSummary')
|
||||
//EventSummary: () => import('~/components/datepicker/EventSummary')
|
||||
},
|
||||
props: ["events", "months"],
|
||||
};
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import EventSummary from "@/components/datepicker/EventSummary";
|
||||
import EventDetail from "@/components/datepicker/EventDetail";
|
||||
import EventSummary from "~/components/datepicker/EventSummary";
|
||||
import EventDetail from "~/components/datepicker/EventDetail";
|
||||
</script>
|
||||
<script>
|
||||
export default {
|
||||
|
||||
@@ -111,8 +111,8 @@
|
||||
<script>
|
||||
export default {
|
||||
components: {
|
||||
PickMonth: () => import("@/components/datepicker/PickMonth"),
|
||||
PickYear: () => import("@/components/datepicker/PickYear"),
|
||||
PickMonth: () => import("~/components/datepicker/PickMonth"),
|
||||
PickYear: () => import("~/components/datepicker/PickYear"),
|
||||
},
|
||||
props: ["date", "events", "mode", "vyear", "vmonth"],
|
||||
data() {
|
||||
|
||||
@@ -139,8 +139,8 @@
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import PickMonth from "@/components/datepicker/PickMonth.vue";
|
||||
import PickYear from "@/components/datepicker/PickYear.vue";
|
||||
import PickMonth from "~/components/datepicker/PickMonth.vue";
|
||||
import PickYear from "~/components/datepicker/PickYear.vue";
|
||||
|
||||
const { $id, $dayjs, $unique } = useNuxtApp();
|
||||
const emit = defineEmits(["date"]);
|
||||
|
||||
Reference in New Issue
Block a user