【Vue】vue3 动态设置 src 地址方法

    <img
        class="logo-srkg"
        :src="getImgUrl('hwtm.png')"
        alt=""
      />
const getImgUrl = (src: string): string => {
  return new URL(`../assets/res-kg/${src}`, import.meta.url).href;
};
posted @ 2022-10-17 09:59  努力挣钱的小鑫  阅读(58)  评论(0编辑  收藏  举报