开发者问题收集

将 Pinia 与 Vue.js Web 组件结合使用

2022-08-24
1653

问题已更新

我尝试使用 Pinia 的商店和使用 Vue.js 创建的 Web 组件,但控制台中出现此错误:

[Vue warn]: injection "Symbol(pinia)" not found at <HelloWorld.ce msg="message" >

我有一个非常简单的例子。

  1. main.ts
import { defineCustomElement } from 'vue'
import HelloWorld from './components/HelloWorld.ce.vue'

const ExampleElement = defineCustomElement(HelloWorld)
customElements.define('hello-world', ExampleElement)
  1. store.ts
import { defineStore, createPinia, setActivePinia } from "pinia";

setActivePinia(createPinia());

export const useCounterStore = defineStore('counter', {
  state: () => ({
    counter: 0,
  }),

  actions: {
    increment() {
      this.counter++;
    },
  },
});
  1. HelloWorld.ce.vue
<script setup lang="ts">
import { ref } from 'vue'
import { useCounterStore } from '../store.ts'

defineProps<{ msg: string }>()

const store = useCounterStore()
</script>

<template>
  <h1>{{ msg }}</h1>
  <div class="card">
    <button type="button" @click="store.increment()">count is {{ store.counter }}</button>
  </div>
</template>
1个回答

您已在 main.js 中创建了 pinia,现在又在商店中重新创建了它。从您的商店中删除以下几行:

import { createPinia } from 'pinia'
const pinia = createPinia()
yoduh
2022-08-24