You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
7 months ago | |
---|---|---|
README.md | 7 months ago | |
vue考前复习题.pdf | 7 months ago |
README.md
<html lang="en">
<head>
</head>
</html>
MVVM模式是一种现代的软件架构模式,它是Model-View-ViewModel的缩写,主要用于简化用户界面(UI)的开发和实现数据与视图的分离。这种模式在前端开发框架如Vue.jis、React等中非常流行,尤其适用于复杂的应用程序开发。
商品信息表
ID | 书名 | 出版社 | 价格 | 数量 | 金额 |
---|---|---|---|---|---|
{{item.id}} | {{item.name}} | {{item.press}} | {{(item.price*0.8).toFixed(2)}} | - + | {{(item.price*item.count).toFixed(2)}} |
合计: | {{totaAmount.toFixed(2)}} |