@thibremy/vue-fetch-composable
v0.2.0-rc.4
Published
Isomorphic fetch hook that should|will works with SSR (server side rendering).
Downloads
3
Maintainers
Readme
vue-fetch-composable
Isomorphic fetch hook that should|will works with SSR (server side rendering).
<template>
<div>
<template v-if="isFetching">
Loading...
</template>
<template v-if="isCompleted" v-else>
<div>{{ text }}</div>
</template>
</div>
</template>
<script>
import { watch } from 'vue'
import { useFetch } from 'vue-fetch-composable'
export default {
setup(props) {
const { fetch, isFetching, isCompleted, abort, text } = useFetch('http://google.com')
watch(() => props.search, async (search) => {
abort()
fetch(`?search=${search}`)
})
return {
isFetching
text
}
}
}
</script>