2022年6月16日
posted @ 2022-06-16 12:06
weakup
阅读(29)
推荐(0)
2022年6月1日
摘要:
//求和相关的配置 export default { namespaced:true, actions:{ jiaOdd(context,value){ console.log('actions中的jiaOdd被调用了') if(context.state.sum % 2){ context.com
阅读全文
posted @ 2022-06-01 22:44
weakup
阅读(38)
推荐(0)
摘要:
<template> <div> <h1>当前求和为:{{sum}}</h1> <h3>当前求和放大10倍为:{{bigSum}}</h3> <h3>我在{{school}},学习{{subject}}</h3> <h3 style="color:red">Person组件的总人数是:{{perso
阅读全文
posted @ 2022-06-01 22:17
weakup
阅读(28)
推荐(0)
摘要:
<template> <div> <h1>当前求和为:{{sum}}</h1> <h3>当前求和放大10倍为:{{bigSum}}</h3> <h3>我在{{school}},学习{{subject}}</h3> <select v-model.number="n"> <option value="
阅读全文
posted @ 2022-06-01 22:02
weakup
阅读(21)
推荐(0)
摘要:
<template> <div> <h1>当前求和为:{{sum}}</h1> <h3>当前求和放大10倍为:{{bigSum}}</h3> <h3>我在{{school}},学习{{subject}}</h3> <select v-model.number="n"> <option value="
阅读全文
posted @ 2022-06-01 20:50
weakup
阅读(36)
推荐(0)
2022年5月31日
摘要:
https://www.jianshu.com/p/01c4b40771b5
阅读全文
posted @ 2022-05-31 19:09
weakup
阅读(12)
推荐(0)
摘要:
/* 该文件是整个项目的入口文件 */ //引入Vue import Vue from 'vue' //引入App组件,它是所有组件的父组件 import App from './App.vue' //关闭vue的生产提示 Vue.config.productionTip = false /* 关于
阅读全文
posted @ 2022-05-31 18:24
weakup
阅读(79)
推荐(0)
摘要:
https://www.jianshu.com/p/660d8fcb0a47
阅读全文
posted @ 2022-05-31 16:36
weakup
阅读(13)
推荐(0)
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>总结数据监视</title> <style> button{ margin-top: 10px; } </style> <!-- 引入Vue --> <script type=
阅读全文
posted @ 2022-05-31 16:18
weakup
阅读(39)
推荐(0)
2022年5月25日
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>理解MVVM</title> <!-- 引入Vue --> <script type="text/javascript" src="../js/vue.js"></script
阅读全文
posted @ 2022-05-25 17:01
weakup
阅读(13)
推荐(0)