[READ-ONLY] Mirror of https://github.com/danielroe/cross-origin-storage. Load shared dependencies from Cross-Origin Storage (COS).
cross-origin-storage experimental nuxt vite vite-plugin
0

Configure Feed

Select the types of activity you want to include in your feed.

1<template> 2 <div> 3 <p>count: {{ count }}</p> 4 <button @click="count++"> 5 increment 6 </button> 7 </div> 8</template> 9 10<script setup lang="ts"> 11import { ref } from 'vue' 12 13const count = ref(0) 14</script>