vue监听页面大小变化
mounted: function () {
window.addEventListener('resize', this.getHeight)
},
beforeRouteLeave(to, from, next) {
...
yekong
4年前 (2020-12-30)
喜欢
div部分
<div class="anbaoxinxi" id="drift" @mousedown="mousedown">
拖动内容
</div>
js部分
mou...
yekong
4年前 (2020-12-30)
喜欢
html
<div class="uploadlist">
<div class="uploadlistitem" v-for="(item,index) in list2&qu...
yekong
4年前 (2020-12-28)
喜欢
<style>
[v-cloak] {
display: none;
}
</style>
<div v-cloak id="home">
</div>
...
yekong
4年前 (2020-12-25)
喜欢
Some conflicts were found in the installation area.
Some of the conflicts below do not have a solution, so the patch cannot be applied.
Plea...
yekong
4年前 (2020-12-21)
喜欢
height: calc(px2rem(110) + constant(safe-area-inset-bottom));
height: calc(px2rem(110) + env(safe-area-inset-bottom));
padding-bottom...
yekong
4年前 (2020-12-18)
喜欢
在router.js里面
const router = new VueRouter({
mode: 'history',
routes,
scrollBehavior (to, from, savedPosition) {
if (saved...
yekong
4年前 (2020-12-15)
喜欢
指定UTF-8
<script charset="UTF-8" type="text/javascript"src="js/g5418.js"></script>
...
yekong
4年前 (2020-12-07)
喜欢
当我们完成了vue外包项目,将编译后的项目文件打包发给客户测试,客户可能并不知道如何运行这个项目,往往需要让我们写一个使用文档,vue编辑后的项目需要一个web环境来运行才可以正常访问,直接打开index.html可能并不能正常运行,尤其是项目中有接口调用的时候。
所以我们需要告...
yekong
4年前 (2020-12-04)
喜欢
前端开发会遇到判断设备类型是否是苹果端,记录一下js代码
var u = navigator.userAgent;
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //androi...
yekong
4年前 (2020-12-04)
喜欢