在创建新的vue组件时遇到一个小问题。 我需要在vue v-for中添加动态工具提示。这是我的方法:
rec.write({
'state': 'work_in_progress',
'is_book_block': True,
# you can put as many field as you want but inside this dicionary
})
这就是我在装载时调用它的方式:
main(){
Rect r1(10,5,"R1");
return 0;
}
class Rect : public Figure
{
public:
Rect(int l, int h,std::string Label) : Figure(l), _h(h),_Label(Label) {};
~Rect(){};
std:: vector<std::string> toString() const;
protected:
int _h;
int _l;
std::string _Label;
};
class Figure
{
public:
Figure(int l):_l(l){}
virtual std::vector<std::string> toStrings() const =0;
virtual ~Figure();
protected:
int _l;
};
一切都很完美,除了一个恼人的vue警告(见附图)
非常感谢任何帮助,谢谢!