https://github.com/chengcyber/wxml-tags
List of standard WXML tags
https://github.com/chengcyber/wxml-tags
tags wechat wxml
Last synced: 12 months ago
JSON representation
List of standard WXML tags
- Host: GitHub
- URL: https://github.com/chengcyber/wxml-tags
- Owner: chengcyber
- License: mit
- Created: 2018-02-02T06:50:43.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-02T09:58:42.000Z (about 8 years ago)
- Last Synced: 2024-05-01T17:12:38.951Z (almost 2 years ago)
- Topics: tags, wechat, wxml
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wxml-tags
> List of standard WXML tags
## Install
```
npm install wxml-tags
```
## Usage
```
const wxmlTags = require('wxml-tags')
console.log(wxmlTags)
// [ 'view', 'scroll-view', ... ]
```
void tags
```
const voidWxmlTags = require('wxml-tags/void');
console.log(voidWxmlTags)
// ['icon', 'progress', ... ]
```
## Test in local
```
git clone git@github.com:kimochg/wxml-tags.git
cd wxml-tags
node examples/
```
## LICENSE
MIT © [Cheng Liu](https://github.com/kimochg)