摘要: ## 1.加法 ``` String a1 = "123.5"; String a2 = "123.5"; BigDecimal bigDecimal = new BigDecimal(a1); BigDecimal bigDecimal1 = new BigDecimal(a2); Double 阅读全文
posted @ 2023-08-16 19:10 lwx_R 阅读(17) 评论(0) 推荐(0)
摘要: ## 1.父传子 - 利用ref [https://www.cnblogs.com/lwx11111/p/17629539.html]() - props 子组件 ```js props: { inputName: String, } ``` - 父组件 ```js ``` ## 2.子传父 ### 阅读全文
posted @ 2023-08-16 18:58 lwx_R 阅读(25) 评论(0) 推荐(0)