Oddbean new post about | logout
  Let r be 1 - (5 + (-642)/(-9)). Solve -r*c + 7*c = -32 for c.
A: 2

/anna 
 
    <template>
        <div id="app">
            <router-view></router-view>
            <button @click="test">点击</button>
        </div>
    </template>
    <script lang='ts'>
    import { Component, Vue } from 'vue-property-decorator'
    @Component({
        components: {
            // 组件
        }
    })
    export default class App extends Vue{
        test(){
            console.log('测试')
        }
    }
    </script>