感谢您的支持,我会继续努力的!
打开微信扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
Powered by RUNCODEX.COM,学的不仅是技术,更是梦想!!!
<script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>
<div id="app">
<div v-if="type>='90'">
优秀
</div>
<div v-else-if="type<90&type>=80">
良
<div v-else-if="type<80&type>=70">
中等
<div v-else-if="type<70&type>=60">
及格
<div v-else-if="type<60" >
不及格
xxxxxxxxxx
new Vue({
el: '#app',
data: {
type: Math.random()*100
}
})
输入 CSS 代码……