您好,我在VueJS应用程序中使用Ionic 4 CDN。 但是,除了“按钮”之外,其他一切看起来都工作正常。
module ringOscitry (
en,
w1,
w2,
w3,
w4
);
input en;
output w1,w2,w3,w4; //RTL
assign w4 = en & w3;
assign w1 = ~ w4;
assign w2 = ~ w1;
assign w3 = ~ w2;
endmodule
module ringosi(enable, w1, w2, w3, w4);
input enable;
output w1, w2, w3, w4;
and u1(w4, enable, w3);
not #5 u2(w1, w4); //Gate_level
not #5 u3(w2, w1);
not #5 u4(w3, w2);
endmodule
module top(en,w1,w2,w3,w4);
input en;
output w1,w2,w3,w4;
ringOscitry c1 (en, w1, w2, w3, w4);
ringosi c2 (enable, w1,w2, w3,w4);
endmodule
这是我添加CDN(官方文档)的方式:
<button ion-button>Button</button
我正在完全按照“官方Ionic 4文档”中的显示方式添加按钮,但是按钮没有设置样式。
答案 0 :(得分:2)
尝试改用这些链接:
<link href="https://unpkg.com/@ionic/core@4.0.0-beta.7/css/ionic.bundle.css" rel="stylesheet">
<script src="https://unpkg.com/@ionic/core@4.0.0-beta.7/dist/ionic.js"></script>