1234567891011121314151617181920212223242526272829303132 |
- <style lang="sass" scoped>
-
- </style>
-
- <template>
- <div>123</div>
- </template>
-
- <script>
- export default {
- data () {
- return {
-
- }
- },
- mounted () {
- console.log(this)
- this.$ajax(this.$api.test.signin.url, {
- method: this.$api.test.signin.method,
- data: {
- userName: 1,
- passWord: 2
- }
- })
- .then(res => {
- console.log(res)
- }).catch(msg => {
- return false
- })
- }
- }
- </script>
|