Within my application, there exists a plethora of utility functions that handle various tasks such as parsing strings and displaying toasts. My main inquiry is regarding how to access these functions within other .vue files without the need for redundant rewrites in each Vue component I create. Is it possible to import one component into another so that these utility functions can be utilized seamlessly? In my experience, Vue tends to require components to be added to the template of another in order to work properly, making simple JavaScript imports challenging. If importing components is indeed the solution, is this considered a best practice? What would be the most conventional approach to tackle this issue?