<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title><!-- TITLE --></title> <!-- HEAD --> </head> <body> <!-- APP --> <script type="module"> import { createApp } from 'vue'; import App from './src/App'; import convue from 'convue-package'; const app = createApp(App); app.use(convue); app.mount('#app'); </script> </body> </html>