(backlinks) init backlinks

This commit is contained in:
Julien Calixte
2021-06-05 16:38:53 +02:00
parent ececcc2391
commit 203db4c00a
6 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { useUserRepoStore } from '@/modules/repo/store/userRepo.store'
import { watch } from 'vue'
export const useBackLinks = () => {
const store = useUserRepoStore()
watch(store, () => {
if (!store.userSettings?.backlink) {
return
}
console.log("let's go backlinks!")
})
}