dope2008

4451 经验值

可以我需要读取后台设好的,

我想问一下,全局的一些变量怎么样去写的?

比如我网站名称,网站logo,这些要从后端拿,存放在那里的?难道我每个页面都要去拿一次吗??

我找到问题了,我原来APP_ENV=local....我直接修改为APP_ENV=dev,就OK啦

app.js:34686 [Vue warn]: Error in render function: "TypeError: Cannot read property 'matched' of undefined"

(found in <Root>)

是前后完全分离好,还是半分离。

        $category = Categorys::find(1);
        $category->title = 'abc';
        $category->save();
        $category = Categorys::where('id',1)->update(['title'=>'abc']);

第一种,是不是先查询出来,然后update 是二条SQL
第二种方法是不是更好呢??

sublime text有插件可以快速生成vue的文件吗?