Vue.component("plan-price-view", { props: ["v-plan"], data: function () { return { plan: this.vPlan } }, template: `
月度:¥{{plan.monthlyPrice}}元
季度:¥{{plan.seasonallyPrice}}元
年度:¥{{plan.yearlyPrice}}元
基础价格:¥{{plan.bandwidthPrice.base}}元/GB
` })