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
Requires
- npm-asset/vuetify: ~1.5
- yiisoft/yii2: ~2.0.14
Replaces
- vaxa/yii2-vuetify: *
This package is auto-updated.
Last update: 2024-10-17 20:20:05 UTC
README
Vuetify Extension for Yii2
This is the Vuetify extension for Yii2.
Requirements
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() }}