mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
17 lines
294 B
HTML
17 lines
294 B
HTML
<div id="app">
|
|
<h3>vuepress-theme-plume</h3>
|
|
</div>
|
|
|
|
<script lang="ts">
|
|
const a = 'So Awesome!'
|
|
const app = document.querySelector('#app')
|
|
app.appendChild(document.createElement('small')).textContent = a
|
|
</script>
|
|
|
|
<style lang="css">
|
|
#app {
|
|
font-size: 2em;
|
|
text-align: center;
|
|
}
|
|
</style>
|