mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
1edac29eba
[release]
20 lines
229 B
Vue
20 lines
229 B
Vue
<template>
|
|
<div>
|
|
{{ test }}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import _ from 'lodash'
|
|
import $ from 'cheerio'
|
|
|
|
export default {
|
|
data () {
|
|
$('<a>A</a>')
|
|
return {
|
|
test: _.startCase('lodash')
|
|
}
|
|
}
|
|
}
|
|
</script>
|