摘要: 在Vue组件中直接使用render函数 - jsx createElement 函数很重要,是json转组件的重点 export default { name: 'MyComponent', render(h) { return <div>Hello, JSX!</div>; } } ref vue 阅读全文
posted @ 2024-11-12 11:37 彭成刚 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 本地html 加载js 和 两种定义模块的方式, IIFE and 对象字面量 需求 希望写一个不启动服务的页面,也不用vite webpack打包,就双击就能运行就行~ 开始以为 requirejs 比较老,结果发现本地也不能运行,chrome报跨域,没有权限。 IIFE(立即执行函数表达式): 阅读全文
posted @ 2024-11-12 09:44 彭成刚 阅读(4) 评论(0) 推荐(0) 编辑
摘要: html`` - function html(str) { return str+'111' } 调用方式 标签模板字符串Tagged Template Literals 这里是自己实现这个字符串模板,等于函数调用的另一种方式 html('111') html`111` solidjs文档里面发现的 阅读全文
posted @ 2024-11-12 09:14 彭成刚 阅读(3) 评论(0) 推荐(0) 编辑