0.2.0-rc.4 • Published 5 years ago
vue-fetch-composable v0.2.0-rc.4
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>
0.2.0-rc.4
5 years ago
0.2.0-rc.3
5 years ago
0.2.0-rc.1
5 years ago
0.2.0-rc.0
5 years ago
0.1.1
5 years ago
0.1.0
5 years ago