djledda.de main
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

20 wiersze
588 B

  1. import { defineComponent, computed, ref } from "vue";
  2. import Test from '@/test.tsx';
  3. export default defineComponent({
  4. name: "app-root",
  5. setup() {
  6. const count = ref(0);
  7. const countDouble = computed(() => count.value * 2);
  8. count.value++;
  9. return () => (
  10. <div class="app-main">
  11. <button class="test" onClick={() => count.value++}>Click me!</button>
  12. <div>Count: {count.value}</div>
  13. <div>Count Double: {countDouble.value}</div>
  14. <Test />
  15. </div>
  16. );
  17. },
  18. });