git checkout -b myWork
Argument of type 'ComputedRef' is not assignable to parameter of type 'string'.
Аргумент типа 'ComputedRef' не может быть присвоен параметру типа 'string'.
const pErrorMinMessage = computed<string>(() => {
return 'world'
})
const fun1 = function (val: string) {
console.log('hello' + val)
}
fun1(pErrorMinMessage.value)
git clone https://github.com/userName/Repo New_Repo
cd New_Repo
git remote set-url origin https://github.com/userName/New_Repo
git remote add upstream https://github.com/userName/Repo
git push origin master
git push --all