<template>
<image :src="pic">image>
<button loading="false">按钮1button>
<button :loading="false">按钮2button>
<button :loading="isLoading">按钮3button>
template>
<script setup>
import {ref} from "vue";
let pic = ref("https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png");
let isLoading = ref(false);
script>
<style lang="scss">
style>