Last active
January 17, 2024 10:17
-
-
Save jb0gie/3edcbf6e0c9f95dc5cbd21e26321865b to your computer and use it in GitHub Desktop.
the evolution of the [schwemplate](https://github.com/AnEntrypoint/schwemplate)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> | |
<link | |
rel="stylesheet" | |
href="https://cdn.jsdelivr.net/npm/rippleui@1.12.1/dist/css/styles.css" | |
/> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script> | |
<div id="app" class="text-5xl">{{ message }}</div> | |
<script> | |
const { createApp, ref } = Vue; | |
createApp({ | |
setup() { | |
const message = ref("Hello Schwepe!"); | |
return { | |
message | |
}; | |
} | |
}).mount("#app"); | |
</script> | |
Author
jb0gie
commented
Jan 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment