grapewheel / avvw

Apicloud + Vue2 + Vant(有赞前端)+ Webpack4打包,极速开发APP框架,将apicloud的渲染效率和vue数据绑定特性发挥极致!
153 stars 55 forks source link

请问 如何给全局引入一个样式 #35

Closed wjy397 closed 5 years ago

wjy397 commented 5 years ago

我做页面的时候 body浏览器默认样式是margin:8px 想去掉这个默认样式,在index.html的head头里加了reset.css没有用 请问 如何解决这个问题?

grapewheel commented 5 years ago

是没有用的,因为index.html 只是用以打开入口页面:

apiready = function () {
    api.openFrame({
      name: 'home',
      url: url,
      rect: {
        x: 0,
        y: 0,
        w: api.winWidth,
        h: api.winHeight
      }
    })
  }

您可以尝试在 page.ejs 上添加

wjy397 commented 5 years ago

谢谢