vue自定义计算器组件

自定义组件实现以下简单的计算器功能:

创建计算器组件文件calculator.vue,代码如下:

<template><div class="calculator"><!-- 当前运算过程显示区域 --><div class="expression">{{ currentExpression }}</div><!-- 计算器显示屏 --><div class="display">{{ displayValue }}</div><!-- 按钮区域 --><div class="buttons"><el-button @click="clear">AC</el-button><el-button @click="toggleSign">+/-</el-button><el-button @click="inputPercent">%</el-button><el-button @click="inputOperator('÷')" style="font-size: 22px;">÷</el-button><el-button @click="inputDigit(7)">7</el-button><el-button @click="inputDigit(8)">8</el-button><el-button @click="inputDigit(9)">9</el-button><el-button @click="inputOperator('*')">*</el-button><el-button @click="inputDigit(4)">4</el-button><el-button @click="inputDigit(5)">5</el-button><el-button @click="inputDigit(6)">6</el-button><el-button @click="inputOperator('-')">-</el-button><el-button @click="inputDigit(1)">1</el-button><el-button @click="inputDigit(2)">2</el-button><el-button @click="inputDigit(3)">3</el-button><el-button @click="inputOperator('+')">+</el-button><el-button @click="inputDigit(0)" class="zero">0</el-button><el-button @click="inputDot">.</el-button><el-button @click="calculate">=</el-button></div></div>
</template><script>export default {data() {return {displayValue: '0', // 显示的值firstOperand: null, // 第一个操作数waitingForSecondOperand: false, // 是否等待第二个操作数operator: null, // 当前的操作符currentExpression: '' // 用于存储当前运算过程};},methods: {// 输入数字inputDigit(digit) {// 如果运算结束并开始输入新数字,清空计算过程和显示屏if (this.firstOperand !== null && this.operator === null) {this.displayValue = String(digit);this.currentExpression = ''; // 清空当前运算过程this.firstOperand = null; // 重置操作数} else if (this.waitingForSecondOperand) {this.displayValue = String(digit);this.waitingForSecondOperand = false;} else {this.displayValue = this.displayValue === '0' ? String(digit) : this.displayValue + String(digit);}this.updateExpression();},// 输入小数点inputDot() {if (!this.displayValue.includes('.')) {this.displayValue += '.';}this.updateExpression();},// 处理运算符inputOperator(nextOperator) {const inputValue = parseFloat(this.displayValue);if (this.operator && this.waitingForSecondOperand) {this.operator = nextOperator;this.updateExpression();return;}if (this.firstOperand === null) {this.firstOperand = inputValue;} else if (this.operator) {const result = this.performCalculation(this.firstOperand, inputValue, this.operator);this.displayValue = String(result);this.firstOperand = result;}this.waitingForSecondOperand = true;this.operator = nextOperator;this.updateExpression();},// 执行计算performCalculation(firstOperand, secondOperand, operator) {switch (operator) {case '+':return firstOperand + secondOperand;case '-':return firstOperand - secondOperand;case '*':return firstOperand * secondOperand;case '÷':return firstOperand / secondOperand;default:return secondOperand;}},// 计算结果calculate() {// 如果未输入第二个操作数,直接返回,不执行计算if (this.operator && this.waitingForSecondOperand) {return;}if (this.operator) {const inputValue = parseFloat(this.displayValue);const secondOperand = this.waitingForSecondOperand ? this.firstOperand : inputValue; // 如果没有第二个操作数,则使用第一个操作数const result = this.performCalculation(this.firstOperand, secondOperand, this.operator);// 完整地记录本次运算过程this.currentExpression = `${this.firstOperand} ${this.operator} ${secondOperand} = ${result}`;this.displayValue = String(result);this.firstOperand = result;this.operator = null;this.waitingForSecondOperand = false;}},// 清除clear() {this.displayValue = '0';this.firstOperand = null;this.operator = null;this.waitingForSecondOperand = false;this.currentExpression = ''; // 清空当前运算过程},// 删除最后一个输入的字符deleteLast() {this.displayValue = this.displayValue.length > 1 ? this.displayValue.slice(0, -1) : '0';this.updateExpression();},// 改变符号toggleSign() {this.displayValue = String(parseFloat(this.displayValue) * -1);this.updateExpression();},// 处理百分比inputPercent() {this.displayValue = String(parseFloat(this.displayValue) / 100);this.updateExpression();},// 更新当前运算过程的显示内容updateExpression() {if (this.firstOperand !== null && this.operator) {// 如果还未输入第二个操作数,不显示 displayValuethis.currentExpression = this.waitingForSecondOperand ?`${this.firstOperand} ${this.operator}` :`${this.firstOperand} ${this.operator} ${this.displayValue}`;} else {this.currentExpression = this.displayValue;}console.log('this.currentExpression', this.currentExpression)}}};
</script><style scoped>.calculator {width: 400px;margin: 0 auto;padding: 20px;background-color: #f1f1f1;border-radius: 10px;box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);}.expression {min-height: 30px;color: #888;text-align: right;font-size: 16px;margin-bottom: 5px;}.display {width: 100%;min-height: 60px;background-color: #333;color: white;text-align: right;padding: 10px;font-size: 24px;border-radius: 5px;margin-bottom: 10px;word-wrap: break-word;}.buttons {display: grid;grid-template-columns: repeat(4, 1fr);gap: 10px;}button {width: 100%;font-size: 18px;border-radius: 5px;background-color: #fff;border: 1px solid #ccc;}.zero {grid-column: span 2;}>>>.el-button+.el-button {margin-left: 0;}
</style>

在项目中引用:

import Calculator from '@/components/common/calculator'export default {components:{Calculator},
}

使用标签即可:

<Calculator></Calculator>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.xdnf.cn/news/14126.html

如若内容造成侵权/违法违规/事实不符,请联系一条长河网进行投诉反馈,一经查实,立即删除!

相关文章

希音面试:亿级用户 日活 月活,如何统计?(史上最强 HyperLogLog 解读)

本文原文链接 尼恩说在前面 在40岁老架构师 尼恩的读者交流群(50)中&#xff0c;最近有小伙伴拿到了一线互联网企业如得物、阿里、滴滴、极兔、有赞、希音、百度、网易、美团的面试资格&#xff0c;遇到很多很重要的面试题&#xff1a; 如何 统计一个 网站 的日活、月活数&a…

2023年MathorCup数学建模B题城市轨道交通列车时刻表优化问题解题全过程文档加程序

2023年第十三届MathorCup高校数学建模挑战赛 B题 城市轨道交通列车时刻表优化问题 原题再现&#xff1a; 列车时刻表优化问题是轨道交通领域行车组织方式的经典问题之一。列车时刻表规定了列车在每个车站的到达和出发&#xff08;或通过&#xff09;时刻&#xff0c;其在实际…

Python数据分析NumPy和pandas(三十一、数据聚合)

聚合是指从数组生成标量值的数据转换。上一次学习的代码示例使用了其中几个聚合函数&#xff0c;包括 mean、count、min 和 sum。常见的聚合见下图列表&#xff0c;但是&#xff0c;不仅限于列表中的这组方法。在 GroupBy 对象上调用聚合函数&#xff08;例如&#xff1a; mean…

公链数字钱包开发与加密钱包App原生开发

随着区块链技术的不断发展&#xff0c;数字货币和去中心化金融&#xff08;DeFi&#xff09;的兴起&#xff0c;公链数字钱包的需求日益增加。数字钱包不仅为用户提供存储、管理和交易数字资产的工具&#xff0c;而且也为区块链技术的应用提供了一个重要的入口。开发一个安全、…

0. 0:《跟着小王学Python·新手》

《跟着小王学Python新手》系列 《跟着小王学Python》 是一套精心设计的Python学习教程&#xff0c;适合各个层次的学习者。本教程从基础语法入手&#xff0c;逐步深入到高级应用&#xff0c;以实例驱动的方式&#xff0c;帮助学习者逐步掌握Python的核心概念。通过开发游戏、构…

HTTPTomcatServle之HTTP详解

✨博客主页&#xff1a; https://blog.csdn.net/m0_63815035?typeblog &#x1f497;《博客内容》&#xff1a;.NET、Java.测试开发、Python、Android、Go、Node、Android前端小程序等相关领域知识 &#x1f4e2;博客专栏&#xff1a; https://blog.csdn.net/m0_63815035/cat…

「数据要素」行业简报|2024.11.上刊

纵观数据要素行业动态&#xff0c;洞察行业风向&#xff0c;把握行业脉搏&#xff01; 一、政策发布 1、《山东省公共数据资源登记管理工作规范(试行)》公开征求意见 11月7日&#xff0c;为认真贯彻落实《中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见》《…

NFS Write IO 不对齐深度分析

背景 最近团队小伙伴弗曼统计了线上用户数据写入对齐情况&#xff0c;通过统计数据发现了一个有趣的现象: 用户写入请求中近 70% 的数据块 4K 不对齐&#xff0c;这也就是说 NFSClient 对大多数的应用写入没有做对齐优化。 下面会从 NFSClient BufferWrite 实现流程的维度解释…

微型导轨在自动化生产线中起什么作用?

在现代制造业的飞速跃进中&#xff0c;自动化生产线的蓬勃发展引领了一场效率与质量的双重革命。微型导轨作为传动领域的重要零部件&#xff0c;可用于工业自动化生产线上的零件运输、加工设备定位等&#xff0c;实现自动化生产和减少人力成本。那么&#xff0c;微型导轨在自动…

【ESP32】DIY一个电子测光仪

这里写目录标题 0 前言1 开箱2 过程2.1 下载固件2.2 烧录固件2.3 编程环境 Thonny2.4 点灯大师2.5 TFT屏幕2.6 BH1750传感器 成果展示 0 前言 开发板&#xff1a;ESP32-S3-5691 开发环境&#xff1a;circuitpythonthony 1 开箱 2 过程 2.1 下载固件 使用circuitpython的方式开…

MSA+抑郁症模型总结

✨✨ 欢迎大家来访Srlua的博文&#xff08;づ&#xffe3;3&#xffe3;&#xff09;づ╭❤ &#x1f31f;&#x1f31f; 欢迎各位亲爱的读者&#xff0c;感谢你们抽出宝贵的时间来阅读我的文章。 我是Srlua小谢&#xff0c;在这里我会分享我的知识和经验。&#x1f3a5; 希望在…

解决Jenkins使用 Git 参数插件拉取 commit 列表缓慢问题

Jenkins使用 Git 参数插件拉取 commit 列表缓慢问题 项目问题问题描述解决方案具体实现 项目问题 在 Jenkins 中使用 Git 参数插件 进行参数化构建&#xff0c;具有多方面的重要性和好处。这不仅提高了构建的灵活性和透明度&#xff0c;还能大大提升开发和运维效率。以下是使用…

黑马智数Day7

获取行车管理计费规则列表 封装接口 export function getRuleListAPI(params) {return request({url: parking/rule/list,params}) } 获取并渲染数据 import { getRuleListAPI } from /apis/carmounted() {this.getRuleList() }methods: {// 获取规则列表async getRuleList(…

员工电脑怎么监控?这些电脑监控软件必备

在当今远程办公、灵活工时盛行的时代&#xff0c;如何掌握员工的在线活动、确保工作效率和数据安全成为许多企业关注的焦点。电脑监控软件作为管理工具中的关键一环&#xff0c;可以有效帮助企业了解员工的在线行为&#xff0c;避免效率低下和数据泄露等风险。今天我们就来介绍…

学习干货|实战学习应急响应之Windows日志分析,网络安全零基础入门到精通教程!

前言 本次环境将从大赛内与实战环境相结合去了解在应急响应中Windows日志分析的几个关键点&#xff0c;符合大赛及真实环境案例&#xff0c;本次环境将从WEB层面的日志分析到主机内的几种关键日志分析和重点功能进行排查 题目描述&#xff1a;某台Windows服务器遭到攻击者入侵…

零基础光伏人,数据计算轻松拿捏

在可再生能源领域&#xff0c;光伏产业以其清洁、可再生的特点日益受到全球关注。然而&#xff0c;对于初学者或“零基础光伏人”而言&#xff0c;光伏项目涉及的一系列数据计算和专业知识往往显得复杂而难以入手。幸运的是&#xff0c;随着技术的进步&#xff0c;一系列光伏计…

一文搞懂链表相关算法

目录 链表的逆序和截断 逆序 截断 查找链表的中间节点 力扣题 博主主页&#xff1a;东洛的克莱斯韦克-CSDN博客 链表的逆序和截断 逆序 推荐使用头插法逆序&#xff0c;首先要 new 一个虚拟头节点——newNode。如下图 链表的头节点为head&#xff0c;由cur指针指向head&a…

红外热成像技术开启光伏检测新视界

随着全球对可再生能源需求的不断增加&#xff0c;光伏发电系统的应用日益广泛。然而&#xff0c;光伏组件在长期运行中可能会出现各种故障&#xff0c;如热斑效应、隐裂、接线盒故障等&#xff0c;这些问题不仅影响光伏系统的发电效率&#xff0c;还可能引发安全隐患。 红外热成…

基于vue框架的的社区智慧养老系统1mo30(程序+源码+数据库+调试部署+开发环境)

系统程序文件列表 项目功能&#xff1a;老人,员工,老人档案,养生视频,社区医生,就医信息,在线咨询,咨询回复,菜品信息,点餐订单,服务预约,通知信息,服务评价,健康关爱,新闻公告,监控日志 开题报告内容 以下是一份基于Vue框架的社区智慧养老系统的开题报告&#xff0c;详细阐述…

龙蜥8.6 配置用户登录次数和锁定策略(已亲测)

操作系统&#xff1a;龙蜥8.6 x86_64 查看是否安装pam模块 rpm -qa | grep pam 查看可以使用的认证模块&#xff0c;因为有的系统是pam_tally2. cd /etc/pam.d ls 经过查看&#xff0c;该服务器是使用的pam_faillock 模块 打开/etc/pam.d/password-auth 的 PAM 配置文件…