createApp({ data () { return { price: 100, quantity: 10 } }, methods: { subtotal: function() { return this.price * this.quantity; } ...
確定! 回上一頁