-
-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
是否考虑类似 v-if、v-for 的写法? #42
Comments
get你的意思,就像 ng和vue?现在是和react比较像的对吧? 但是就得搞一套自己dsl,想想脑壳疼😄 还有个思路,是不是搞个格式化工具和语法高亮工具就搞定了? 最近正在搞cli工具,最近正在思考 怎么搞vscode的语法高亮,看起来得先搞个格式化工具? 如果有了语法高亮和格式化工具,v-for和v-if 还是需要的吗??? |
but...我用的是 webstorm 哈哈,格式化工具感觉也不是太省心的样子(别偷懒😂) |
好的接受广大用户的心声,不过有点难搞啊😭 |
cli工具上新,欢迎尝鲜 $ npx @templatejs/cli new myapp
# 选择对应的平台
# ❯ webpack4
# rollup
# parcel
# fis3
# browserify
# gulp
# browser |
目前 vscode,atom,sublime高亮插件都做好了,webstorm和其他编辑器不太一样,还需要写java代码,还没搞定,有兴趣来搞不😄 |
666,老哥行动力真强 |
加个微信 yanhaijing123 |
是否考虑类似 v-if、v-for 的写法?
现在这种写法怎么说呢,对于格式化代码不太友好吧,而且写完看起来会有点乱乱的
主要是 if 内的 html 格式化代码后会和 if 逻辑所在的标签同一层级,看不出来层级结构。。。
比如:
当我按了格式化以后就会变成
如果 if 里头的代码再多一些的话,理解代码就会非常困难。。。。
而如果是在标签属性上加 if else的话,那么只要收起这个标签就能很清洗的了解逻辑了。。。
从模板的角度考虑的话,v-show 这种控制 css 的不需要实现,v-if + v-for 就能解决好多东西了
The text was updated successfully, but these errors were encountered: