2023-10-25から1日間の記事一覧

Trigger the page inside the iFrame to auto-scroll the calling page

inside-page.vue <template> <div> <h1>Hello</h1> <div @click="trigger = 'change' " style="color:white;background-color:blue;"> button </div> </div> </template> <script> export default { data(){ return { trigger: null, } }, watch : { trigger: function(){ window.parent.postMessage({ message: 'scroll', …