waft
v0.8.3
Published
<h1 align="center">Waft</h1>
Downloads
538
Readme
安装
npm install waftcli快速开始
npm install waft-cli -g
waft init
cd my-project
waft start文档
示例
<template>
<div class="container">
<text class="hello-font">Hello World</text>
</div>
</template>
<script>
import { JSON } from 'waft-json';
import { genie, window } from 'waft';
export function HelloWaft(): void{
window.setState(JSON.parseObject(`{
"title": "powered by waft",
"from": "Tmall Genie"
}`));
window.onshow = (): void =>{
genie.playTTS('我在,你说', true);
}
}
</script>