| 123456789101112131415161718 |
- <script>
- export default {
- onLaunch: function () {},
- onShow: function () {},
- onHide: function () {}
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import '@/common/scss/index.scss';
- // 设置editor组件的placeholder样式,只在这边设置才会生效
- .ql-editor.ql-blank::before {
- font-style: normal;
- color: #a6a6a6;
- }
- </style>
|