We have built a large Vuejs app whose components we are now adding to Vuepress.
However we're having issues figuring out how to move over some globally use plugins and composable functions used throughout the project. They are typical helper plugins that format dates, currency and capitalisation.
An example would be to uppercase text {{ postTitle | uppercase }}
and another would be called within computed
or methods
as uppercase(String)
I can't find any documentation for Vuepress on how to create and manage thee helper functions.
Any helpers much appreciated.