摘要:
bind:只调用一次,指令第一次绑定到元素时调用。在这里可以进行一次性的初始化设置。 inserted:被绑定元素插入父节点时调用 (仅保证父节点存在,但不一定已被插入文档中)。 update:所在组件的 VNode 更新时调用,但是可能发生在其子 VNode 更新之前。指令的值可能发生了改变,也可能没有。但是你可以通过比较更新前后的值来忽略不必要的模板更新 (详细的钩子函数参数见下)。 comp 阅读全文
摘要:
抽离的子组件 <template> <div class="wrapper"> <slot name="demo" :msg="msg" text="this is a slot demo , ">this is demo slot.</slot> </div> </template> <scrip 阅读全文
摘要:
有时候需要一个类型,是依赖于上一个类型但是,对属性的要求去不同 interface Person{ name: string; agent: number; } type Person2 = Readonly; type Person3 = Partial; class Test { run() { let person: Person = { ... 阅读全文
摘要:
原文分隔线====================== while writing go this morning, I found that the wrong code are not under lined by red line This is really difficult for me and time consuming to keep writing. After 1 hou... 阅读全文
摘要:
(1)使用命令行连接数据库 psql -U postgres -h localhost -p 5433 (2)列出所有的数据库 \l -- 查看所有数据库 (3)进入某个数据库 \c name -- name是表名 (4)列出数据库的所有数据表和视图 \d -- 列出所有的数据表和视图 \dt \d tablename 删除表 drop table (5)列出某个数据表... 阅读全文
摘要:
https://www.cnblogs.com/fsjohnhuang/p/4147810.html 阅读全文
摘要:
module.exports = { root: true, env: { node: true }, extends: ['plugin:vue/essential', '@vue/prettier'], rules: { 'no-console': process.env.NODE_ENV 'p 阅读全文