Skip to content

Instantly share code, notes, and snippets.

@Jexordexan
Created August 6, 2019 21:36
Show Gist options
  • Save Jexordexan/54a6696e0e4e51fc5273fb25dd7207c2 to your computer and use it in GitHub Desktop.
Save Jexordexan/54a6696e0e4e51fc5273fb25dd7207c2 to your computer and use it in GitHub Desktop.
import { value, createComponent } from 'vue-function-api'
export default createComponent({
props: /* ... */,
setup(props) {
const sort = state({
field: 'created_at',
reverse: false,
})
function changeSort(field: string, reverse: boolean) {
sort.field = field
sort.reverse = reverse
}
return { sort, changeSort }
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment