Header.vueMainPage.vueExample:
<footer>
<buttononclick="save()">Save</button>
</footer>
Must become:
<template>
<footer>
<button @click="onSave">Save</button>
</footer>
</template>
Existing JavaScript is written in vanilla JS.
The AI Agent must convert it into Vue-compatible patterns.
The following patterns should be removed or minimized: