12345678910111213141516171819202122 |
- (function() {
- new Vue({
- el: "#app",
- data: {
- dataList:[],
- BtnClass:"p-fix-bottom-0",
- },
- mounted:function(){
- var vm = this
- debugger
- var screemH=document.body.clientHeight;
- console.log(screemH)
- if(document.body.clientHeight<1000){
- vm.BtnClass="mt20"
- }
- },
- methods: {
-
- },
- })
- })
|