8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
import { useStore } from '@/stores/hooks';
|
|
|
|
export function useOptions(elementName) {
|
|
const { $calculation } = useStore();
|
|
|
|
return $calculation.$options.getOptions(elementName);
|
|
}
|