Created
February 7, 2018 09:40
-
-
Save Yang03/2943166d743a057b38ab5b65e4cb778e to your computer and use it in GitHub Desktop.
vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import App from './app' | |
new Vue({ | |
el: '#app', | |
render: h => h(App, { | |
props: { | |
message: '小程序2' | |
} | |
}) | |
}) | |
<template> | |
<p>{{message}}</p> | |
</template> | |
<script> | |
export default { | |
props: ['message'], | |
computed: {} | |
} | |
</script> | |
<style> | |
p { | |
color: red; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment