Skip to content

Instantly share code, notes, and snippets.

@jb0gie
Last active January 17, 2024 10:17
Show Gist options
  • Save jb0gie/3edcbf6e0c9f95dc5cbd21e26321865b to your computer and use it in GitHub Desktop.
Save jb0gie/3edcbf6e0c9f95dc5cbd21e26321865b to your computer and use it in GitHub Desktop.
the evolution of the [schwemplate](https://github.com/AnEntrypoint/schwemplate)
<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>
@jb0gie
Copy link
Author

jb0gie commented Jan 16, 2024

MacgruberImGIF

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment