摘要:
#include <iostream> using namespace std; int main() { int a[5] = { 1, 3, 5, 7, 9 }; int sm = 0; //注意这里要给默认值 for (int i = 0; i < 5; i++) { sm += a[i]; 阅读全文
摘要:
1、安装 npm install vue-i18n --save 2、注入 vue 实例中,项目中实现调用 api 和 模板语法 // main.js// The Vue build version to load with the `import` command // (runtime-only 阅读全文