语法助手是 就是 编辑->激活代码助手吧, 已经激活了, 完全没有提示,
还有 这篇帖子里的 提示
https://ask.dcloud.net.cn/docs/#//ask.dcloud.net.cn/article/19601
v 开头的指令提示, 全没有, 是什么情况? 难道要全靠手写?
我是uniapp项目,
文件如下:
<template>
<view class="content">
<view class="input-group">
<view class="input-row">
<text class="title">邮箱:</text>
<input type="text" v-model="email" placeholder="请输入邮箱">
</view>
</view>
<view class="btn-row">
<button type="primary" class="primary" @tap="findPassword">提交</button>
</view>
</view>
</template>
<script>
import service from '../../service.js';
export default {
data() {
return {
email: ''
}
},
methods: {
findPassword() {
/**
* 仅做示例
*/
if (this.email.length < 3 || !~this.email.indexOf('@')) {
uni.showToast({
icon: 'none',
title: '邮箱地址不合法',
});
return;
}
uni.showToast({
icon: 'none',
title: '已发送重置邮件至注册邮箱,请注意查收。',
duration: 3000
});
}
}
}
</script>
落日逢佳雨
谢谢分享
2019-08-31 15:23