storipress/karbon

View on GitHub
packages/playground/templates/article-layouts/QooLayout.vue

Summary

Maintainability
Test Coverage
<script setup>
import { useWindowSize } from '@vueuse/core'

const { width, height } = useWindowSize()
</script>

<template>
  <div>
    This is foo layout
    <div>
      <Test />
    </div>
    <div>{{ width }} x {{ height }}</div>
    <Counter />
  </div>
</template>