PHP code example of inquid / yii2-vue
1. Go to this page and download the library: Download inquid/yii2-vue library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
inquid / yii2-vue example snippets
php composer.phar
use inquid\vue\Vue;
Vue::begin([
'id' => "vue-app",
'data' => [
'userModel' => User::findOne(Yii::$app->user->id),
'message' => "hello",
'seen' => false,
'todos' => [
['text' => "aa"],
['text' => "akbar"]
]
],
'methods' => [
'reverseMessage' => new yii\web\JsExpression("function(){"
. "this.message =1; "
. "}"),
]
]);
Vue::end();