DEV Community

Discussion on: React or Vue or Something New?

Collapse
 
gluons profile image
Saran Tanpituckpong • Edited

Wow! I can write similar code with Vue + TypeScript (feat. Vue Property Decorator).

<template>
  <div>{{ message }}</div>
</template>

<script lang="ts">
import { Vue, Component, Prop } from 'vue-property-decorator';

@Component({
  name: 'hello-world'
})
export default class HelloWorld extends Vue {
  @Prop(String) message: string;
}
</script>
<hello-world message="Hello World!"></hello-world>
Collapse
 
sergiu profile image
Sergiu Butnarașu

Nice, but I personally like the Stencil syntax.