Define variable splicing url method in vue

Use $+{variable} as follows:

import useUserStore from "@/store/modules/user";//这里存储的有登录的用户信息

const currentUserName = computed(() => {
  return useUserStore().name;
});


const allUrl = `http://192.168.9.35:8282/?code=${currentUserName.value}`

Guess you like

Origin blog.csdn.net/weixin_38225763/article/details/134696010