emacs web-mode缩进javascript不正确

时间:2017-08-14 09:58:27

标签: emacs spacemacs

线路太长时,

网页模式缩进不正确。 代码:

<script>
  import axios from 'axios'

  export default {
    components: {

    },
    asyncData ({ params }) {

      return axios
        .get().then((res) => {
          return { title: res.data.title }
      })
    }
  }
</script>

以下是正确的。

      return axios
        .get().then((res) => {
          return { title: res.data.title }
      })

但:

      return axios.get()
             .then((res) => {
          return { title: res.data.title }
      })

当我在“axios”后面断线时,这是不正确的

任何人帮忙??

1 个答案:

答案 0 :(得分:1)

啊......我找到了。

(add-to-list 'web-mode-indentation-params '("lineup-calls" . nil))