App.vue 351 B

123456789101112131415161718
  1. <script>
  2. export default {
  3. onLaunch: function () {},
  4. onShow: function () {},
  5. onHide: function () {}
  6. }
  7. </script>
  8. <style lang="scss">
  9. /*每个页面公共css */
  10. @import '@/common/scss/index.scss';
  11. // 设置editor组件的placeholder样式,只在这边设置才会生效
  12. .ql-editor.ql-blank::before {
  13. font-style: normal;
  14. color: #a6a6a6;
  15. }
  16. </style>