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.
p8qk6wvz2 d9d83b87e9
Update README.md
7 months ago
README.md Update README.md 7 months ago
vue考前复习题.pdf ADD file via upload 7 months ago

README.md

<html lang="en"> <head> </head>

商品信息表

ID书名 出版社价格 数量金额
{{item.id}} {{item.name}} {{item.press}} {{(item.price*0.8).toFixed(2)}} - + {{(item.price*item.count).toFixed(2)}}
合计:{{totaAmount.toFixed(2)}}
</html> MVVM模式是一种现代的软件架构模式它是Model-View-ViewModel的缩写主要用于简化用户界面(UI)的开发和实现数据与视图的分离。这种模式在前端开发框架如Vue.jis、React等中非常流行尤其适用于复杂的应用程序开发。