djledda.de main
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

App.tsx 686 B

2ヶ月前
2ヶ月前
2ヶ月前
2ヶ月前
1234567891011121314151617181920
  1. import { computed, defineComponent, ref } from "vue";
  2. export default defineComponent({
  3. name: "app-root",
  4. setup() {
  5. const count = ref(0);
  6. const countDouble = computed(() => count.value * 2);
  7. count.value++;
  8. return () => (
  9. <div class="app-main">
  10. <button class="test" onClick={() => count.value++}>Click me!</button>
  11. <div>Count: {count.value}</div>
  12. <div>Count Double: {countDouble.value}</div>
  13. <p>
  14. <a href="/generative-energy/">Go to this other site hosted here but a different Vue app!</a>
  15. </p>
  16. </div>
  17. );
  18. },
  19. });