yetopen/yii2-vuetify

The Vuetify extension for the Yii framework

Installs: 63

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 4

Forks: 12

Type:yii2-extension

1.5 2019-03-02 10:11 UTC

This package is auto-updated.

Last update: 2024-04-17 18:57:51 UTC


README

68747470733a2f2f63646e2e767565746966796a732e636f6d2f696d616765732f6c6f676f732f762d616c742e737667

Vuetify Extension for Yii2


This is the Vuetify extension for Yii2.

Requirements

antkaz/yii2-vue

Installation

The preferred way to install this extension is through composer.

Run

php composer.phar require vaxa/yii2-vuetify

or add

"vaxa/yii2-vuetify": "~1.0"

to the require section of your composer.json file.

Usage

php template:

<?php
use antkaz\vue\VueAsset;
use vaxa\vuetify\VuetifyAsset;
VueAsset::register($this);
VuetifyAsset::register($this);

twig template :

{{ use('antkaz\vue\VueAsset') }}
{{ use('vaxa\vuetify\VuetifyAsset') }}
{{ register_vue_asset() }}
{{ register_vuetify_asset() }}