pack yupe-vuejs-widget
Widget for use vue in yupe
anisimovvb/yupe-vuejs-widget
Widget for use vue in yupe
- Tuesday, June 12, 2018
- by anisimovvb
- Repository
- 1 Watchers
- 0 Stars
- 1 Installations
- JavaScript
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Install
Run, (*1)
php composer.phar require anisimovvb/yupe-vuejs-widget "*"
Add to protected/config/main.php, (*2)
'aliases' => [
'vuejs' => realpath(Yii::getPathOfAlias('vendor') . '/anisimovvb/yupe-vuejs-widget/widget')
]
Usage
Test Alert
beginWidget(
'vuejs.YVue',
[
'id' => "vue-app",
'data' => [
'param_name' => 'param_value',
],
'methods' => [
'func1' =>
"function(event){
return false;
}",
],
]
);
$this->endWidget();
?>