yetopen/yii2-vuetify

The Vuetify extension for the Yii framework

Installs: 63

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 4

Forks: 13

Type:yii2-extension

1.5 2019-03-02 10:11 UTC

This package is auto-updated.

Last update: 2024-09-17 19:59:41 UTC


README

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() }}