Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

238
Views
Pinia store in Typescript Vue component gives error "Property 'testStore' does not exist on type 'CreateComponentPublicInstance'...."

I've a <script setup> block in which I import my testStore but whenever I want to use this.testStore.name somewhere in my vue file vetur gives me this error:

Property 'testStore' does not exist on type 'CreateComponentPublicInstance<{ [x: string & `on${string}`]: ((...args: any[]) => any) | undefined; } | { [x: string & `on${string}`]: undefined; }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ... 10 more ..., {}>'.
  Property 'testStore' does not exist on type '{ $: ComponentInternalInstance; $data: {}; $props: { [x: string & `on${string}`]: ((...args: any[]) => any) | undefined; } | { [x: string & `on${string}`]: undefined; }; ... 10 more ...; $watch(source: string | Function, cb: Function, options?: WatchOptions<...> | undefined): WatchStopHandle; } & { ...; } & ShallowU...'.Vetur(2339)

Since I'm a typescript n00b I don't really know how to fix this and the Pinia docs don't really seem to help me out on this matter(I can only find how I can make a shim for custom properties but nothing about having to define my stores or something).

this is my pinia store file(testStore.ts)

import { defineStore } from 'pinia';

const state = () => ({
  name: 'This is my store'
});

const actions = {};

const getters = {
};
export const useTestStore = defineStore('testStore', {
  state,
  getters,
  actions,
});

This is my .vue file

<script setup lang="ts">
import { defineComponent } from 'vue'
import { useTestStore } from '@/stores/testStore';
const testStore = useTestStore();
</script>
<template>
  {{ testStore.name }}
</template>
<script lang="ts">
export default defineComponent({
  name: 'testStore',
  mounted () {
    console.log(this.testStore.name)
  }
});
</script>
about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

I think your code should be

<script setup lang="ts">
  import { defineComponent } from 'vue'
  import { useTestStore } from '@/stores/testStore';
  
  const testStore = useTestStore();

  console.log(testStore); // testStore should displayed
</script>

<template>
  {{ testStore.name }}
</template>

Notice:

<script setup lang="ts"></script>

and

<script lang="ts">
  export default defineComponent({});
</script>

Both are used to define components, use one of them, don't use both.

Some Vue doc that you might need:

https://vuejs.org/guide/typescript/composition-api.html

https://vuejs.org/guide/typescript/options-api.html

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!