fix: remove redundant aliases
This commit is contained in:
@@ -52,10 +52,10 @@
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import Logout from "@/components/user/Logout";
|
||||
import UserInfo from "@/components/user/UserInfo";
|
||||
import ChangePass from "@/components/user/ChangePass";
|
||||
import { useStore } from "@/stores/index";
|
||||
import Logout from "~/components/user/Logout";
|
||||
import UserInfo from "~/components/user/UserInfo";
|
||||
import ChangePass from "~/components/user/ChangePass";
|
||||
import { useStore } from "~/stores/index";
|
||||
const store = useStore();
|
||||
const lang = computed(() => store.lang);
|
||||
const isVietnamese = computed(() => lang.value === "vi");
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
export default {
|
||||
props: ["userId"],
|
||||
setup() {
|
||||
|
||||
Reference in New Issue
Block a user