|
Lines 390-404
import { storeToRefs } from "pinia"
Link Here
|
| 390 |
|
390 |
|
| 391 |
export default { |
391 |
export default { |
| 392 |
setup() { |
392 |
setup() { |
| 393 |
const vendorStore = inject("vendorStore") |
|
|
| 394 |
const { vendors } = storeToRefs(vendorStore) |
| 395 |
|
| 396 |
const AVStore = inject("AVStore") |
393 |
const AVStore = inject("AVStore") |
| 397 |
const { av_title_publication_types } = storeToRefs(AVStore) |
394 |
const { av_title_publication_types } = storeToRefs(AVStore) |
| 398 |
const { get_lib_from_av } = AVStore |
395 |
const { get_lib_from_av } = AVStore |
| 399 |
|
396 |
|
| 400 |
return { |
397 |
return { |
| 401 |
vendors, |
|
|
| 402 |
av_title_publication_types, |
398 |
av_title_publication_types, |
| 403 |
get_lib_from_av, |
399 |
get_lib_from_av, |
| 404 |
} |
400 |
} |
| 405 |
- |
|
|