常阅 API
技术专题
工程化配置
主题
<!DOCTYPE html> <html> <body> <div id="app"></div> <script type="module" src="./main.js"></script> </body> </html>
<template> <h1>Hello world</h1> </template>
import { createApp } from 'vue' import App from './App.vue' createApp(App).mount('#app')