12345678910111213141516171819202122232425262728293031323334353637 |
- import message from './message.js';
- const config = {
-
- top:'top',
-
- bottom:'bottom',
-
- center:'center',
-
- message:'top',
-
- dialog:'center',
-
- share:'bottom',
-
- list:'bottom',
- confirm:'center',
-
- address:'bottom',
-
- qiang:'center',
-
- form:'center',
-
- img:'center',
- alert:'center',
- }
- export default {
- data(){
- return {
- config:config
- }
- },
- mixins: [message],
- }
|