In vue 2, in order to incorporate vue into an existing web forms ASPX page you just had to add the proper script tag. Something like this :
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
Can you do this with Vue 3? I've been researching how to incorporate vue 3 into existing web forms application, like ASPX pages, and can't find anything on it. Can anyone show me how to incorporate vue 3 into an ASPX page?
use this
or
The Vue package makes multiple packages available:
You'd pick whichever one work best, but the simplest way to go is to use the
vue.global.js
during development andvue.global.prod.js
in prodExample