(input: Partial<Data>)
| 107 | const { query, findById, sort, find, findFirst } = store; |
| 108 | |
| 109 | function createStoreEntity(input: Partial<Data>) { |
| 110 | return createEntity<Data, View>({ data: input, client }); |
| 111 | } |
| 112 | |
| 113 | const countComputed = computed(() => { |
| 114 | return client.all.length; |
no test coverage detected