Vue中创建快速加载的非阻塞iframe


<template>

  <iframe :src="url" width="100%" height="500px" loading="lazy"></iframe>

</template>


<script>

export default {

  data() {

    return {

      url: 'https://www.example.com'

    }

  }

}

</script>