fix: remove redundant aliases
This commit is contained in:
@@ -427,8 +427,8 @@
|
||||
/>
|
||||
</template>
|
||||
<script setup>
|
||||
import { useStore } from "@/stores/index";
|
||||
import ScrollBox from "@/components/datatable/ScrollBox.vue";
|
||||
import { useStore } from "~/stores/index";
|
||||
import ScrollBox from "~/components/datatable/ScrollBox.vue";
|
||||
|
||||
const props = defineProps({
|
||||
pagename: String,
|
||||
|
||||
@@ -445,7 +445,7 @@
|
||||
</template>
|
||||
<script setup>
|
||||
import { ref } from "vue";
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
const store = useStore();
|
||||
const { $id, $copy, $empty, $stripHtml, $calc, $remove, $copyToClipboard } = useNuxtApp();
|
||||
var props = defineProps({
|
||||
|
||||
@@ -171,7 +171,7 @@
|
||||
></Modal>
|
||||
</template>
|
||||
<script setup>
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
const {
|
||||
$getdata,
|
||||
$getapi,
|
||||
|
||||
@@ -230,9 +230,9 @@
|
||||
</CreateTemplate>
|
||||
</template>
|
||||
<script setup>
|
||||
// FilterOption: () => import("@/components/datatable/FilterOption"),
|
||||
// TableOption: () => import("@/components/datatable/TableOption"),
|
||||
// CreateTemplate: () => import("@/components/datatable/CreateTemplate")
|
||||
// FilterOption: () => import("~/components/datatable/FilterOption"),
|
||||
// TableOption: () => import("~/components/datatable/TableOption"),
|
||||
// CreateTemplate: () => import("~/components/datatable/CreateTemplate")
|
||||
import CreateTemplate from "~/components/datatable/CreateTemplate";
|
||||
const { $id, $copy, $empty, $stripHtml } = useNuxtApp();
|
||||
var props = defineProps({
|
||||
|
||||
@@ -109,7 +109,7 @@
|
||||
</template>
|
||||
<script setup>
|
||||
import { ref } from "vue";
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
|
||||
const emit = defineEmits(["modalevent", "close"]);
|
||||
const store = useStore();
|
||||
|
||||
@@ -111,7 +111,7 @@
|
||||
></Modal>
|
||||
</template>
|
||||
<script setup>
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
var props = defineProps({
|
||||
data: Array,
|
||||
info: Object,
|
||||
|
||||
@@ -257,7 +257,7 @@
|
||||
/>
|
||||
</template>
|
||||
<script setup>
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
const emit = defineEmits(["modalevent"]);
|
||||
const store = useStore();
|
||||
const { $id, $copy, $clone, $empty, $stripHtml, $createField, $calc, $isNumber } = useNuxtApp();
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
></Modal>
|
||||
</template>
|
||||
<script setup>
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
const emit = defineEmits(["close"]);
|
||||
const { $stripHtml, $clone, $arrayMove, $remove } = useNuxtApp();
|
||||
const store = useStore();
|
||||
|
||||
@@ -163,7 +163,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
|
||||
Reference in New Issue
Block a user