1.System.out.println(); 调用System类中的public static final PrintStream out,输出为PrintStream(字节形式的输出流,为OutputStream的子类),再调用该类中的println方法 Api文档: public void println() Terminates the current line by writing the line separator string. The line separator string…
1====>vue.20脚手架的创建 cnpm install --global vue-cli 全局安装脚手架 vue init webpack my-project 创建项目 Use ESLint to lint your code? (Y/n) 选择no 它是对你的js代码做检测 Set up unit tests (Y/n) 选择no 知否要做单元测试 Setup e2e tests with Nightwatch? (Y/n) n 端对端测试 2===>组件实现按需求加载 (重要)…