All Projects → coderfe → vscode-wxml

coderfe / vscode-wxml

Licence: MIT license
Wechat wxml support and wxml code snippets for VSCode

Projects that are alternatives of or similar to vscode-wxml

wxml-vscode
👾Vscode plugin -- wechat applets formatting and highlighting components (highly customized)
Stars: ✭ 31 (+63.16%)
Mutual labels:  weapp, wxml
Wemark
微信小程序Markdown渲染库
Stars: ✭ 1,159 (+6000%)
Mutual labels:  weapp, wxml
Wuss Weapp
🐳wuss-weapp 一款高质量,组件齐全,高自定义的微信小程序UI组件库
Stars: ✭ 338 (+1678.95%)
Mutual labels:  weapp, wxml
Wxmlify
一个轻量快速的插件,帮助你在微信小程序中显示富文本编辑器生成的HTML。
Stars: ✭ 93 (+389.47%)
Mutual labels:  weapp, wxml
Tina
💃 一款轻巧的渐进式微信小程序框架
Stars: ✭ 1,153 (+5968.42%)
Mutual labels:  weapp, wxml
Weapp
🐧 微信小程序组件和功能封装,基于微信Component自定义组件开发
Stars: ✭ 235 (+1136.84%)
Mutual labels:  weapp, wxml
html2wxml
将html文件转为微信小程序用的wxml文件
Stars: ✭ 44 (+131.58%)
Mutual labels:  wxml
devs-codex
A repo of helpful front end development and design links
Stars: ✭ 16 (-15.79%)
Mutual labels:  snippets
XcxComponentsDemo
微信小程序组件化方案示例
Stars: ✭ 13 (-31.58%)
Mutual labels:  wxml
weapp-OpenRadio
A base music weapp named OpenRadio for wechat. Can use on weapp getting started.
Stars: ✭ 14 (-26.32%)
Mutual labels:  weapp
wxfortune
运势小程序,使用canvas绘画图片,并保存图片
Stars: ✭ 79 (+315.79%)
Mutual labels:  wxml
simple-recaptcha-v3
🤖 This repository contains simple reCAPTCHA v3 integration for your Laravel application.
Stars: ✭ 25 (+31.58%)
Mutual labels:  snippets
bits
Bits by Creative Tim - Code Snippets for easier coding
Stars: ✭ 142 (+647.37%)
Mutual labels:  snippets
snippets
My code snippets
Stars: ✭ 29 (+52.63%)
Mutual labels:  snippets
snippets
A Chrome extension that allows you to create and edit JavaScript code snippets, which are synced to all your computers
Stars: ✭ 46 (+142.11%)
Mutual labels:  snippets
Tutorials
Repository for my YouTube tutorials + code snippets
Stars: ✭ 224 (+1078.95%)
Mutual labels:  snippets
vim-symfony
Symfony Vim plugin
Stars: ✭ 27 (+42.11%)
Mutual labels:  snippets
getx-snippets-intelliJ
An extension to accelerate the process of developing applications with flutter, aimed at everyone using the GetX package.
Stars: ✭ 52 (+173.68%)
Mutual labels:  snippets
JMGS
基于LBS的微信小程序,服务器端代码在这里server@https://github.com/g1mi/jmgs_server
Stars: ✭ 29 (+52.63%)
Mutual labels:  weapp
interview-refresh-java-bigdata
a one-stop repo to lookup for code snippets of core java concepts, sql, data structures as well as big data. It also consists of interview questions asked in real-life.
Stars: ✭ 25 (+31.58%)
Mutual labels:  snippets

微信小程序 wxml

为 VSCode 提供 wxml 语法支持及代码片段

version installs

安装

  1. 打开编辑器,Ctrl + Shift + X,搜索 weapp-wxml
  2. 点击 install

使用

键入关键词,然后回车。关键词不区分大小写

vscode-weapp-snippets

代码示例

  • swiper

    <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
      <block wx:for="{{imgUrls}}">
        <swiper-item>
          <image src="{{item}}" class="slide-image" />
        </swiper-item>
      </block>
    </swiper>
  • actionsheet

    <action-sheet>
      <block wx:for="{{actionSheetItems}}">
        <action-sheet-item class="item" data-name="{{item}}" />{{item}}</action-sheet-item>
      </block>
    </action-sheet>
  • checkgroup

    <checkbox-group>
      <label class="" wx:for="{{item}}">
        <checkbox value="item.name" />{{item.value}}
      </label>
    </checkbox-group>
  • wxfor

    wx:for="{{item in items}}"
  • button

    <button type="" size="" loading="" plain="" bindtap=""></button>
  • ······more

Enjoy!​​

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].