版博士V2.0程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

store.hbs 135 B

123456789
  1. import { defineStore } from 'pinia'
  2. export default defineStore('{{name}}', {
  3. state() {
  4. return {}
  5. },
  6. getters: {},
  7. actions: {}
  8. })