[Vuejs]-Vue File Agent from CDN on ASP.NET MVC

0👍

Well, I finally figured out at least part of my problem, and it’s because I’m a moron. I stumbled across it when I opened up my browser’s "Developer Tools" and drilled down through a few screens. Apparently, I was missing a pretty important piece of the Vue puzzle in my HTML. Once I added this line to my <head> (the "core" Vue library):

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.js"></script>

I finally got a visible upload box. It’s still missing all the nice-looking styling, but at least the control is there now and I can start working with it a little more.
Working Vue File Agent

Leave a comment