12345678910111213141516171819202122232425 |
- import message from './message.js';
- const config = {
-
- top:'top',
-
- bottom:'bottom',
-
- center:'center',
-
- message:'top',
-
- dialog:'center',
-
- share:'bottom',
- }
- export default {
- data(){
- return {
- config:config
- }
- },
- mixins: [message],
- }
|