26 lines
711 B
HTML
26 lines
711 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>前端测试</title>
|
|
<script src="/static/vue.global.prod.js"></script>
|
|
<link rel="stylesheet" href="/static/element-plus.css" />
|
|
<script src="/static/element-plus.full.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<h1>测试页面</h1>
|
|
<p>Vue 已加载: {{ loaded }}</p>
|
|
<el-button type="primary">测试按钮</el-button>
|
|
</div>
|
|
<script>
|
|
const { createApp, ref } = Vue;
|
|
createApp({
|
|
setup() {
|
|
const loaded = ref(true);
|
|
return { loaded };
|
|
}
|
|
}).use(ElementPlus).mount('#app');
|
|
</script>
|
|
</body>
|
|
</html> |