How to use `<template> in <template>` in Vue JS

I use Table of Element UI:

<template>
........
<el-table-column
      label="Operations">
      <template scope="scope">
        <el-button
          size="small"
          @click="handleEdit(scope.$index, scope.row)">Edit</el-button>
        <el-button
          size="small"
          type="danger"
          @click="handleDelete(scope.$index, scope.row)">Delete</el-button>
      </template>
    </el-table-column>
.........
</template>
<script>
    import moment from 'moment';
    import Posts from '../api/posts/posts';

    export default {
        data() {
            return {
                posts: [],
            };
        },

Get error

Expected one of: <template>, <script>, <style>

Please help me to solve this.