index.vue 282 B

123456789101112
  1. <template>
  2. <h1>Index page r s</h1>
  3. <div v-if="$can('create', 'tagg')">
  4. <a @click="createPost">Add Post</a>
  5. </div>
  6. </template>
  7. <script setup lang="ts">
  8. import {useProfileAccessStore} from "~/store/profile/access";
  9. // const store = useProfileAccessStore()
  10. </script>