PHPackages                             xanweb/c5-v-item-list - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. xanweb/c5-v-item-list

ActiveLibrary[Templating &amp; Views](/categories/templating)

xanweb/c5-v-item-list
=====================

Manage your list of items easily without need to write a bunch of code

v1.1.1(3y ago)0334MITVuePHP &gt;=7.4

Since Sep 4Pushed 3y ago5 watchersCompare

[ Source](https://github.com/Xanweb/c5-v-item-list)[ Packagist](https://packagist.org/packages/xanweb/c5-v-item-list)[ RSS](/packages/xanweb-c5-v-item-list/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (3)Versions (6)Used By (0)

ConcreteCMS VueJS Item List
===========================

[](#concretecms-vuejs-item-list)

[![Latest Version on Packagist](https://camo.githubusercontent.com/6693249d9ca9b1ac9564b9bcb83b73f111c4b1fb5effe712d382a90729470102/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f78616e7765622f63352d762d6974656d2d6c6973742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/xanweb/c5-v-item-list)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)

Manage your list of items easily without need to write a bunch of code \*\* Requires ConcreteCMS v9 \*\*

Installation
------------

[](#installation)

Include library to your composer.json

```
composer require xanweb/c5-v-item-list
```

Add the service provider to `application/config/app.php`

```
return [
    'providers' => [
        'xw_item_list' => '\Xanweb\C5\VueItemList\ServiceProvider'
    ],
];
```

or load it from you package on\_start

```
public function on_start()
{
    $this->app->make(\Concrete\Core\Foundation\Service\ProviderList::class)->registerProvider(\Xanweb\C5\VueItemList\ServiceProvider::class);
}
```

Usage
-----

[](#usage)

1. Load optional assets depending on your needs:

    - Editor Assets (`$this->app['editor']->requireEditorAssets();`) if you need to use RichText Editor
2. Load required Item List Asset Group (`xanweb/v-item-list`)
3. Use Item List VueJS components:
    Here is an example

```
