Files
vue-ts-example/src/pages/some-page.page.vue
严浩 0ae06768fd
All checks were successful
CI / cache-and-install (push) Successful in 49s
chore: 更新页面链接和样式
2024-08-14 13:31:26 +08:00

16 lines
436 B
Vue

<template>
<div>
<h1>Some Page</h1>
<button @click="$router.back()">Back</button>
<main>
<ul>
<li>
密码强度
<a target="_blank" href="https://zxcvbn-ts.github.io/zxcvbn/guide/getting-started/">@zxcvbn-ts/core</a>
</li>
<li>vitepress高亮: <a target="_blank" href="https://shiki.tmrs.site/packages/vitepress">Shiki</a></li>
</ul>
</main>
</div>
</template>