Files
vue-formkit-example/index.html
严浩 533a762151
Some checks failed
/ test (push) Failing after 12s
/ surge (push) Successful in 47s
feat: PrimeVue 表单
2024-11-23 22:00:09 +08:00

35 lines
521 B
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/vite.svg"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Vue FormKit Example</title>
<link
rel="stylesheet"
href="/src/assets/tailwind.css"
>
<link
rel="stylesheet"
href="/src/assets/main.css"
>
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/main.ts"
></script>
</body>
</html>