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