Deleted member 150
GuestI can also recommend VueJS, i'm using it in nearly every web frontend that i've written.
Vue is pretty easy to learn. This here is a fully working Vue 3 single file component (using composition API).I've heard good things about Vue. I must look into it sometime myself, tried React before and hated nearly every moment of it.
<template>
<div>
<span>
You clicked {{ count }} times.
</span>
<button @click="onClick">Count higher</button>
</div>
</template>
<script setup>
import { ref } from 'vue'
const count = ref(0);
const onClick = () => {
count.value += 1;
};
</script>
I played the Warcraft mod in CSS for soooo long, it was awesome!Back in the day I worked alot with Python and Lua. I was developing different CSS and CSGO servers. And worked alot with the WarCraft Mod for CS. (You had a lot of races that you can play with different skills and effects). But with the years the intrest faded a little bit.
Yeah it was a lot of fun!I played the Warcraft mod in CSS for soooo long, it was awesome!
Vue is a simplified react framework, it also origins from there.I've heard good things about Vue. I must look into it sometime myself, tried React before and hated nearly every moment of it.
it was my favorite gameplay! Oh and superhero mode.I played the Warcraft mod in CSS for soooo long, it was awesome!