1. [Vue warn]: inject() can only be used inside setup() or functional components. 这个消息是提示我们,需要将引入的方法作为一个变量使用。以vue-store为例,如果我们按照如下的方式使用:
import UseUserStore from ../../store/module…
最简单的类
function Person() {this.name "张三";this.age 20;
}
var p new Person();
console.log(p.name);//张三构造函数和原型链里面增加方法
function Person(){this.name张三; /*属性*/this.age20;this.runfunction(){console.log(this.name在运动);}
}…
导入模块
import jieba
import pandas as pd
from collections import Counter
from pyecharts.charts import Line,Pie,Scatter,Bar,Map,Grid
from pyecharts.charts import WordCloud
from pyecharts import options as opts
from pyecharts.globals import ThemeType
from…