这个类:HtmlString
<?php
namespace Illuminate\Support;
use Illuminate\Contracts\Support\Htmlable;
class HtmlString implements Htmlable
{
/**
* The HTML string.
*
* @var string
*/
protected $html;
/**
* Create a new HTML string instance.
*
* @param string $html
* @return void
*/
public function __construct($html)
{
$this->html = $html;
}
/**
* Get the HTML string.
*
* @return string
*/
public function toHtml()
{
return $this->html;
}
/**
* Get the HTML string.
*
* @return string
*/ … 不能禁用Double Shift来搜索PhpStorm中的所有功能。
这确实是一个转储快捷方式。
版:
PhpStorm 2016.3.2
Build#PS-163.10504.2,建于2016年12月20日
分配给另一个快捷方式不再起作用:
我正在使用MacOS。
谢谢你的帮助。
在 vuex store 中存储配置是一个好习惯吗?
export default {
state: {
app: {
name: 'A project using vuex'
}
}
}
Run Code Online (Sandbox Code Playgroud)