1.2.15 • Published 17 days ago

@expressive-analytics/quasar-list v1.2.15

Weekly downloads
-
License
UNLICENSED
Repository
gitlab
Last release
17 days ago

The Quasar List plugin is a replacement for EAList to update it to the Quasar framework. You should consider a DTList from this plugin when you need automatic support for server-side pagination. You may also consider this plugin for quick scaffolding of data models.

Getting Started

Installation

npm i --save @expressive-analytics/quasar-list

Basic Usage

A DTList can be used to back any type of interface. Consider this QList example.

DTPager is a convenience component which maps to QPagination.

<template lang="pug">
q-list
  q-item(v-for="u in list.page.items")
    q-item-section {{u.id}}
    q-item-section {{ u.alias}}
dt-pager(:list="list")
</template>

<script setup lang="ts">
import {ref} from 'vue'
import {Relay} from 'system/relay'
import {User} from 'types'
import {DTList} from '@expressive-analytics/quasar-list'

const list = ref(new DTList<User>(Relay,User,'User'))
list.value.fetch()
</script>
1.2.14

17 days ago

1.2.15

17 days ago

1.2.13

28 days ago

1.2.12

1 month ago

1.2.10

5 months ago

1.2.9

5 months ago

1.2.0

6 months ago

1.1.1

10 months ago

1.2.8

5 months ago

1.2.7

5 months ago

1.2.6

6 months ago

1.2.5

6 months ago

1.1.6

8 months ago

1.2.4

6 months ago

1.1.5

8 months ago

1.2.3

6 months ago

1.1.4

8 months ago

1.2.2

6 months ago

1.1.3

9 months ago

1.2.1

6 months ago

1.1.2

9 months ago

1.0.19

12 months ago

1.1.0

12 months ago

1.0.18

1 year ago

1.0.17

1 year ago

1.0.16

1 year ago

1.0.15

1 year ago

1.0.14

1 year ago

1.0.13

1 year ago

1.0.12

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago