Skip to content

Instantly share code, notes, and snippets.

View FrankySnow's full-sized avatar

Florian Sinatra FrankySnow

View GitHub Profile
import { inject, ref, provide } from '@vue/composition-api';
export function useAppBarProviders() {
const title = ref('');
function updateTitle(newTitle: string) {
title.value = newTitle;
}
provide('updateAppBarTitle', updateTitle);