export const useHowToNav = async (cachekey?:string) => {
  const route=useRoute();
  if (cachekey==undefined){
    cachekey=route.path;
  }
  const { data:navigation } = await useAsyncData(cachekey+' navigation', () => {
    return queryCollectionNavigation('howto',['description','icon']).order("title","ASC")
  })
  return ref(navigation.value);
}
